Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
117
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add cyan theme, polish Witchsky colors, fix hover states on Blacksky/Red Dwarf light themes #1

open opened by ellioth.co targeting main from ellioth.co/witchsky.app: theme-changes
  • 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
Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:6kqpljoz4r7ttyhofw6sg2km/sh.tangled.repo.pull/3mkggin7lp422
+26 -14
Diff #0
+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
+7
src/screens/Settings/AppearanceSettings/shared.tsx
··· 9 9 BLACKSKY_PALETTE, 10 10 BLUESKY_PALETTE, 11 11 CATPPUCIN_PALETTE, 12 + CYAN_PALETTE, 12 13 DEER_PALETTE, 13 14 DEFAULT_PALETTE, 14 15 EVERGARDEN_PALETTE, ··· 34 35 | 'reddwarf' 35 36 | 'catppuccin' 36 37 | 'evergarden' 38 + | 'cyan base' 37 39 | 'material3' 38 40 39 41 export type ColorSchemeOption = { ··· 97 99 label: _(msg`Evergarden`), 98 100 primary: EVERGARDEN_PALETTE.primary_500, 99 101 }, 102 + { 103 + name: 'cyan base', 104 + label: _(msg`Cyan Base`), 105 + primary: CYAN_PALETTE.primary_500, 106 + }, 100 107 { 101 108 name: 'material3', 102 109 label: _(msg`Material You`),
+1
src/state/persisted/schema.ts
··· 63 63 'reddwarf', 64 64 'catppuccin', 65 65 'evergarden', 66 + 'cyan base', 66 67 'material3', 67 68 ]), 68 69 hue: z.number(),
+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
sign up or login to add to the discussion
ellioth.co submitted #0
5 commits
expand
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
  • src/alf/themes.ts:106
expand 0 comments