- Adds a new cyan-based color theme
- Polishes the Witchsky theme palette (especially in light mode)
- Fixes a couple of missing hover colors on certain themes' light mode
+26
-14
Diff
round #0
+4
src/alf/index.tsx
+4
src/alf/index.tsx
···
14
14
blackskyscheme,
15
15
blueskyscheme,
16
16
catppuccinscheme,
17
+
cyanscheme,
17
18
deerscheme,
18
19
evergardenscheme,
19
20
kittyscheme,
···
189
190
case 'evergarden':
190
191
currentScheme = evergardenscheme
191
192
break
193
+
case 'cyan base':
194
+
currentScheme = cyanscheme
195
+
break
192
196
case 'material3':
193
197
currentScheme = getMaterial3Colors(palette).scheme
194
198
break
+1
src/state/persisted/schema.ts
+1
src/state/persisted/schema.ts
+14
-14
src/alf/themes.ts
+14
-14
src/alf/themes.ts
···
113
113
contrast_300: '#C0BBB9',
114
114
contrast_400: '#B0ABA9',
115
115
contrast_500: '#A09B99',
116
-
contrast_600: '#887a72',
117
-
contrast_700: '#6e5f57',
118
-
contrast_800: '#5f514a',
119
-
contrast_900: '#504340',
120
-
contrast_950: '#43352f',
121
-
contrast_975: '#1c1815',
122
-
contrast_1000: '#050302',
116
+
contrast_600: '#756e6b',
117
+
contrast_700: '#635d5a',
118
+
contrast_800: '#524d4a',
119
+
contrast_900: '#433f3d',
120
+
contrast_950: '#353231',
121
+
contrast_975: '#1b1817',
122
+
contrast_1000: '#080706',
123
123
124
124
primary_25: `hsl(5, 30%, 97%)`,
125
125
primary_50: `hsl(5, 30%, 95%)`,
···
179
179
contrast_300: '#C0BBB9',
180
180
contrast_400: '#B0ABA9',
181
181
contrast_500: '#A09B99',
182
-
contrast_600: '#887a72',
183
-
contrast_700: '#6e5f57',
184
-
contrast_800: '#5f514a',
185
-
contrast_900: '#504340',
186
-
contrast_950: '#43352f',
187
-
contrast_975: '#322a25',
188
-
contrast_1000: '#272019',
182
+
contrast_600: '#756e6b',
183
+
contrast_700: '#635d5a',
184
+
contrast_800: '#524d4a',
185
+
contrast_900: '#433f3d',
186
+
contrast_950: '#353231',
187
+
contrast_975: '#2a2726',
188
+
contrast_1000: '#1f1d1c',
189
189
190
190
primary_25: `hsl(5, 30%, 97%)`,
191
191
primary_50: `hsl(5, 30%, 95%)`,
History
1 round
0 comments
ellioth.co
submitted
#0
5 commits
expand
collapse
update: adjust default theme contrast colors for softer borders/hovers
update: soften light grays and add warmth to dark mode backgrounds
fix: restore visible hover states for Blacksky and Red Dwarf light mode themes
feat: add cyan base color theme
update: tone down dark mode warmth from overly brown to neutral-warm grey
merge conflicts detected
expand
collapse
expand
collapse
- src/alf/themes.ts:106