/** * Theme tokens for the editor TUI. Hex values; Ink renders them via chalk. * * Palette mirrors ggcoder's dark theme so the family resemblance is obvious, * but values live here so we don't drag in ggcoder's theme module. */ export declare const theme: { readonly primary: "#60a5fa"; readonly secondary: "#a78bfa"; readonly success: "#4ade80"; readonly error: "#f87171"; readonly warning: "#fbbf24"; readonly text: "#e5e7eb"; readonly textDim: "#6b7280"; readonly textMuted: "#9ca3af"; readonly border: "#374151"; readonly accent: "#818cf8"; readonly toolName: "#60a5fa"; readonly toolSuccess: "#4ade80"; readonly toolError: "#f87171"; readonly spinnerColor: "#60a5fa"; readonly inputPrompt: "#60a5fa"; readonly command: "#818cf8"; readonly subtle: "#4b5563"; }; export type ThemeKey = keyof typeof theme; //# sourceMappingURL=theme.d.ts.map