aboutsummaryrefslogtreecommitdiff
path: root/src/store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/store.ts')
-rw-r--r--src/store.ts25
1 files changed, 12 insertions, 13 deletions
diff --git a/src/store.ts b/src/store.ts
index b882101..00892b7 100644
--- a/src/store.ts
+++ b/src/store.ts
@@ -2,7 +2,6 @@
* Defines a global store for UI settings, palette colors, etc
*/
-
import {defineStore} from 'pinia';
import {Action} from './lib';
import {LayoutOptions} from './layout';
@@ -66,18 +65,18 @@ function getDefaultState(): StoreState {
const scrollGap = getScrollBarWidth();
const tileSpacing = breakpoint == 'sm' ? 6 : 9;
const color = { // Note: For scrollbar colors on chrome, edit ./index.css
- text: '#fafaf9',
- textAlt: '#1c1917',
- bg: '#292524',
- bgLight: '#44403c',
- bgDark: '#1c1917',
- bgLight2: '#57534e',
- bgDark2: '#0e0c0b',
- bgAlt: '#f5f5f4',
- bgAltDark: '#d6d3d1',
- alt: '#a3e623',
- altDark: '#65a30d',
- accent: '#f59e0b',
+ text: '#fafaf9', // stone-50
+ textAlt: '#1c1917', // stone-900
+ bg: '#292524', // stone-800
+ bgLight: '#44403c', // stone-700
+ bgDark: '#1c1917', // stone-900
+ bgLight2: '#57534e', // stone-600
+ bgDark2: '#0e0c0b', // darker version of stone-900
+ bgAlt: '#f5f5f4', // stone-100
+ bgAltDark: '#d6d3d1', // stone-300
+ alt: '#a3e635', // lime-400
+ altDark: '#65a30d', // lime-600
+ accent: '#f59e0b', // amber-500
};
return {
// Device related