Themes previously embedded layout-affecting values (baseSize, lineHeight, density, letterSpacing) alongside visual identity properties, coupling user ergonomic preferences to color theme selection. This change establishes a clear separation of concerns: - Themes own: palette, font family, border-radius, and font-coupled letterSpacing (e.g. Inter's -0.005em tracking) - Layout scale (baseSize, lineHeight, density) is standardized via DEFAULT_TYPOGRAPHY and DEFAULT_LAYOUT — not overridden per theme All themes now spread DEFAULT_TYPOGRAPHY and DEFAULT_LAYOUT as their base, removing silent divergence and making future layout settings (e.g. user-configurable density) trivially applicable across all themes without per-theme special-casing.
194 lines
5.7 KiB
TypeScript
194 lines
5.7 KiB
TypeScript
import type { DashboardTheme, ThemeTypography, ThemeLayout } from "./types";
|
|
|
|
/**
|
|
* Built-in dashboard themes.
|
|
*
|
|
* Each theme defines its own palette, typography, and layout so switching
|
|
* themes produces visible changes beyond just color — fonts, density, and
|
|
* corner-radius all shift to match the theme's personality.
|
|
*
|
|
* Theme names must stay in sync with the backend's
|
|
* `_BUILTIN_DASHBOARD_THEMES` list in `hermes_cli/web_server.py`.
|
|
*/
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Shared typography / layout presets
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Default system stack — neutral, safe fallback for every platform. */
|
|
const SYSTEM_SANS =
|
|
'system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif';
|
|
const SYSTEM_MONO =
|
|
'ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace';
|
|
|
|
const DEFAULT_TYPOGRAPHY: ThemeTypography = {
|
|
fontSans: SYSTEM_SANS,
|
|
fontMono: SYSTEM_MONO,
|
|
baseSize: "15px",
|
|
lineHeight: "1.55",
|
|
letterSpacing: "0",
|
|
};
|
|
|
|
const DEFAULT_LAYOUT: ThemeLayout = {
|
|
radius: "0.5rem",
|
|
density: "comfortable",
|
|
};
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Themes
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export const defaultTheme: DashboardTheme = {
|
|
name: "default",
|
|
label: "Hermes Teal",
|
|
description: "Classic dark teal — the canonical Hermes look",
|
|
palette: {
|
|
background: { hex: "#041c1c", alpha: 1 },
|
|
midground: { hex: "#ffe6cb", alpha: 1 },
|
|
foreground: { hex: "#ffffff", alpha: 0 },
|
|
warmGlow: "rgba(255, 189, 56, 0.35)",
|
|
noiseOpacity: 1,
|
|
},
|
|
typography: DEFAULT_TYPOGRAPHY,
|
|
layout: DEFAULT_LAYOUT,
|
|
};
|
|
|
|
export const midnightTheme: DashboardTheme = {
|
|
name: "midnight",
|
|
label: "Midnight",
|
|
description: "Deep blue-violet with cool accents",
|
|
palette: {
|
|
background: { hex: "#0a0a1f", alpha: 1 },
|
|
midground: { hex: "#d4c8ff", alpha: 1 },
|
|
foreground: { hex: "#ffffff", alpha: 0 },
|
|
warmGlow: "rgba(167, 139, 250, 0.32)",
|
|
noiseOpacity: 0.8,
|
|
},
|
|
typography: {
|
|
...DEFAULT_TYPOGRAPHY,
|
|
fontSans: `"Inter", ${SYSTEM_SANS}`,
|
|
fontMono: `"JetBrains Mono", ${SYSTEM_MONO}`,
|
|
fontUrl:
|
|
"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap",
|
|
letterSpacing: "-0.005em",
|
|
},
|
|
layout: {
|
|
...DEFAULT_LAYOUT,
|
|
radius: "0.75rem",
|
|
},
|
|
};
|
|
|
|
export const emberTheme: DashboardTheme = {
|
|
name: "ember",
|
|
label: "Ember",
|
|
description: "Warm crimson and bronze — forge vibes",
|
|
palette: {
|
|
background: { hex: "#1a0a06", alpha: 1 },
|
|
midground: { hex: "#ffd8b0", alpha: 1 },
|
|
foreground: { hex: "#ffffff", alpha: 0 },
|
|
warmGlow: "rgba(249, 115, 22, 0.38)",
|
|
noiseOpacity: 1,
|
|
},
|
|
typography: {
|
|
...DEFAULT_TYPOGRAPHY,
|
|
fontSans: `"Spectral", Georgia, "Times New Roman", serif`,
|
|
fontMono: `"IBM Plex Mono", ${SYSTEM_MONO}`,
|
|
fontUrl:
|
|
"https://fonts.googleapis.com/css2?family=Spectral:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;700&display=swap",
|
|
},
|
|
layout: {
|
|
...DEFAULT_LAYOUT,
|
|
radius: "0.25rem",
|
|
},
|
|
colorOverrides: {
|
|
destructive: "#c92d0f",
|
|
warning: "#f97316",
|
|
},
|
|
};
|
|
|
|
export const monoTheme: DashboardTheme = {
|
|
name: "mono",
|
|
label: "Mono",
|
|
description: "Clean grayscale — minimal and focused",
|
|
palette: {
|
|
background: { hex: "#0e0e0e", alpha: 1 },
|
|
midground: { hex: "#eaeaea", alpha: 1 },
|
|
foreground: { hex: "#ffffff", alpha: 0 },
|
|
warmGlow: "rgba(255, 255, 255, 0.1)",
|
|
noiseOpacity: 0.6,
|
|
},
|
|
typography: {
|
|
...DEFAULT_TYPOGRAPHY,
|
|
fontSans: `"IBM Plex Sans", ${SYSTEM_SANS}`,
|
|
fontMono: `"IBM Plex Mono", ${SYSTEM_MONO}`,
|
|
fontUrl:
|
|
"https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap",
|
|
},
|
|
layout: {
|
|
...DEFAULT_LAYOUT,
|
|
radius: "0",
|
|
},
|
|
};
|
|
|
|
export const cyberpunkTheme: DashboardTheme = {
|
|
name: "cyberpunk",
|
|
label: "Cyberpunk",
|
|
description: "Neon green on black — matrix terminal",
|
|
palette: {
|
|
background: { hex: "#040608", alpha: 1 },
|
|
midground: { hex: "#9bffcf", alpha: 1 },
|
|
foreground: { hex: "#ffffff", alpha: 0 },
|
|
warmGlow: "rgba(0, 255, 136, 0.22)",
|
|
noiseOpacity: 1.2,
|
|
},
|
|
typography: {
|
|
...DEFAULT_TYPOGRAPHY,
|
|
fontSans: `"Share Tech Mono", "JetBrains Mono", ${SYSTEM_MONO}`,
|
|
fontMono: `"Share Tech Mono", "JetBrains Mono", ${SYSTEM_MONO}`,
|
|
fontUrl:
|
|
"https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=JetBrains+Mono:wght@400;700&display=swap",
|
|
},
|
|
layout: {
|
|
...DEFAULT_LAYOUT,
|
|
radius: "0",
|
|
},
|
|
colorOverrides: {
|
|
success: "#00ff88",
|
|
warning: "#ffd700",
|
|
destructive: "#ff0055",
|
|
},
|
|
};
|
|
|
|
export const roseTheme: DashboardTheme = {
|
|
name: "rose",
|
|
label: "Rosé",
|
|
description: "Soft pink and warm ivory — easy on the eyes",
|
|
palette: {
|
|
background: { hex: "#1a0f15", alpha: 1 },
|
|
midground: { hex: "#ffd4e1", alpha: 1 },
|
|
foreground: { hex: "#ffffff", alpha: 0 },
|
|
warmGlow: "rgba(249, 168, 212, 0.3)",
|
|
noiseOpacity: 0.9,
|
|
},
|
|
typography: {
|
|
...DEFAULT_TYPOGRAPHY,
|
|
fontSans: `"Fraunces", Georgia, serif`,
|
|
fontMono: `"DM Mono", ${SYSTEM_MONO}`,
|
|
fontUrl:
|
|
"https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=DM+Mono:wght@400;500&display=swap",
|
|
},
|
|
layout: {
|
|
...DEFAULT_LAYOUT,
|
|
radius: "1rem",
|
|
},
|
|
};
|
|
|
|
export const BUILTIN_THEMES: Record<string, DashboardTheme> = {
|
|
default: defaultTheme,
|
|
midnight: midnightTheme,
|
|
ember: emberTheme,
|
|
mono: monoTheme,
|
|
cyberpunk: cyberpunkTheme,
|
|
rose: roseTheme,
|
|
};
|