Adds 18 preset themes (16 dual-mode + 2 light-only) selectable from
a new /settings route. Persists per-user via the existing key-value
settings table — no schema refactor. Default on first load is
obsidian dark.
Storage: two new seeded keys (theme_id, theme_mode) inserted
idempotently from schema.sql. PATCH /api/settings tightens validation
with a discriminated branch — theme_id must be one of the 18
whitelisted ids, theme_mode ∈ {dark,light,system}, anything else
rejects 400. Other keys pass through the loose record schema.
CSS layer: 18 files in apps/web/src/styles/themes/, each declaring
.theme-<id> (light) and .theme-<id>.dark (dark) — except ivory and
chalk which are light-only. Anchor-to-token mapping per spec §3.
--destructive stays red across all themes. --radius unchanged at
0.625rem (spec parenthetical was about "not per-theme", not a
specific value swap).
Frontend: lib/theme.ts owns THEMES, applyTheme(), setTheme(), and
useTheme() — module-singleton with optimistic PATCH + revert on
failure (mirrors useChatStatus / useSidebar pattern). Settings.tsx
renders a 3-col (md) / 2-col (mobile) grid of shadcn Card swatches
with a Dark/Light/System radio group on top. App.tsx mounts
useTheme() at AppShell top and wires the /settings route.
index.html ships a pre-React FOUC script that reads localStorage
'boocode.theme' and stamps the className on <html> before any
paint. Stripped two pre-existing dark-mode lock-ins (AppShell's
hardcoded 'dark' className and body's neutral-950/100 tailwind
utilities) that would have fought theme tokens.
Light-only + dark request → falls back to obsidian dark in three
places: lib/theme.ts effectiveThemeId(), the FOUC script, and the
picker's "Light only" badge. No inline message; matches spec §8
decision 1.
shadcn primitives card and radio-group installed via shadcn CLI
(no hand-rolling). card.tsx and radio-group.tsx are the only ui/
additions.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
61 lines
1.6 KiB
CSS
61 lines
1.6 KiB
CSS
/* themes-v1: Steel Pink (family: pink/magenta).
|
|
Dark anchors: #0e0408 #1a080e #2e0c1a #9a4070 #cc33aa. */
|
|
.theme-steel-pink {
|
|
--background: #fdf4fa;
|
|
--foreground: #2a0a1f;
|
|
--card: #fbe8f4;
|
|
--card-foreground: #2a0a1f;
|
|
--popover: #fbe8f4;
|
|
--popover-foreground: #2a0a1f;
|
|
--primary: #952382;
|
|
--primary-foreground: #ffffff;
|
|
--secondary: #f4d4ea;
|
|
--secondary-foreground: #2a0a1f;
|
|
--muted: #f4d4ea;
|
|
--muted-foreground: #7a3058;
|
|
--accent: #952382;
|
|
--accent-foreground: #ffffff;
|
|
--destructive: #b91c1c;
|
|
--destructive-foreground: #ffffff;
|
|
--border: #f4d4ea;
|
|
--input: #f4d4ea;
|
|
--ring: #952382;
|
|
--sidebar: #fbe8f4;
|
|
--sidebar-foreground: #2a0a1f;
|
|
--sidebar-primary: #952382;
|
|
--sidebar-primary-foreground: #ffffff;
|
|
--sidebar-accent: #f4d4ea;
|
|
--sidebar-accent-foreground: #2a0a1f;
|
|
--sidebar-border: #f4d4ea;
|
|
--sidebar-ring: #952382;
|
|
}
|
|
.theme-steel-pink.dark {
|
|
--background: #0e0408;
|
|
--foreground: #f0d8e8;
|
|
--card: #1a080e;
|
|
--card-foreground: #f0d8e8;
|
|
--popover: #1a080e;
|
|
--popover-foreground: #f0d8e8;
|
|
--primary: #cc33aa;
|
|
--primary-foreground: #0e0408;
|
|
--secondary: #2e0c1a;
|
|
--secondary-foreground: #f0d8e8;
|
|
--muted: #2e0c1a;
|
|
--muted-foreground: #9a4070;
|
|
--accent: #cc33aa;
|
|
--accent-foreground: #0e0408;
|
|
--destructive: #dc2626;
|
|
--destructive-foreground: #ffffff;
|
|
--border: #2e0c1a;
|
|
--input: #2e0c1a;
|
|
--ring: #cc33aa;
|
|
--sidebar: #1a080e;
|
|
--sidebar-foreground: #f0d8e8;
|
|
--sidebar-primary: #cc33aa;
|
|
--sidebar-primary-foreground: #0e0408;
|
|
--sidebar-accent: #cc33aa;
|
|
--sidebar-accent-foreground: #0e0408;
|
|
--sidebar-border: #2e0c1a;
|
|
--sidebar-ring: #cc33aa;
|
|
}
|