export type ColorScheme = { background: string; foreground: string; primary: string; secondary: string; muted: string; accent: string; destructive: string; border: string; input: string; ring: string; }; export const colors = { light: { background: "210 40% 98%", foreground: "222 47% 11%", primary: "221 83% 53%", secondary: "210 40% 96%", muted: "210 40% 96%", accent: "210 40% 94%", destructive: "0 84% 60%", border: "214 32% 91%", input: "214 32% 91%", ring: "221 83% 53%", }, dark: { background: "222 47% 11%", foreground: "210 40% 98%", primary: "217 91% 60%", secondary: "217 33% 17%", muted: "217 33% 17%", accent: "217 33% 20%", destructive: "0 63% 31%", border: "217 33% 20%", input: "217 33% 20%", ring: "217 91% 60%", }, } as const satisfies Record<"light" | "dark", ColorScheme>;