/** * Tokyo Night Moon — color palette for the Zoe TUI. * * US1 imports these tokens directly (`import { theme } from '../theme.js'`); * US3 wraps them in a React context via `use-theme.ts` so components can be * re-themed without touching call sites. Hex values are the single source of * truth for every component color — no inline hex elsewhere. */ export interface Theme { bg: string; bgHighlight: string; fg: string; fgDim: string; fgGutter: string; blue: string; cyan: string; green: string; yellow: string; red: string; purple: string; orange: string; } export declare const theme: Theme;