Co-authored-by: Claude (Opus 4.6) <claude@hermes.local> Co-committed-by: Claude (Opus 4.6) <claude@hermes.local>
40 lines
914 B
TypeScript
40 lines
914 B
TypeScript
const ACCENT = "#7C3AED";
|
|
const ACCENT_GLOW = "#A78BFA";
|
|
const MATRIX_GREEN = "#00FF41";
|
|
|
|
export const Colors = {
|
|
dark: {
|
|
background: "#0A0A12",
|
|
surface: "#12121E",
|
|
surfaceElevated: "#1A1A2E",
|
|
border: "#2A2A44",
|
|
text: "#F0EEFF",
|
|
textSecondary: "#8B87A8",
|
|
textMuted: "#4B4868",
|
|
accent: ACCENT,
|
|
accentGlow: ACCENT_GLOW,
|
|
matrixGreen: MATRIX_GREEN,
|
|
tabBar: "transparent",
|
|
tabBarBorder: "#1E1E35",
|
|
tint: ACCENT,
|
|
tabIconDefault: "#4B4868",
|
|
tabIconSelected: ACCENT_GLOW,
|
|
jobStarted: "#F59E0B",
|
|
jobCompleted: "#10B981",
|
|
chat: "#22D3EE",
|
|
agentState: "#6B7280",
|
|
error: "#EF4444",
|
|
speaking: "#7C3AED",
|
|
thinking: "#3B82F6",
|
|
working: "#F59E0B",
|
|
idle: "#6B7280",
|
|
micActive: "#EF4444",
|
|
field: "#1A1A2E",
|
|
textInverted: "#0A0A12",
|
|
destructive: "#EF4444",
|
|
link: "#A78BFA",
|
|
},
|
|
} as const;
|
|
|
|
export default Colors;
|