16 lines
491 B
TypeScript
16 lines
491 B
TypeScript
export const theme = {
|
|
bg: "#09090b",
|
|
surface: "rgba(255,255,255,0.03)",
|
|
border: "rgba(255,255,255,0.10)",
|
|
text: "#ffffff",
|
|
textDim: "rgba(255,255,255,0.55)",
|
|
blue: "#3b82f6",
|
|
cyan: "#22d3ee",
|
|
emerald: "#10b981",
|
|
amber: "#f59e0b",
|
|
red: "#ef4444",
|
|
font: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif',
|
|
mono: 'ui-monospace, SFMono-Regular, Menlo, monospace',
|
|
brandGradient: "linear-gradient(90deg, #60a5fa, #3b82f6, #22d3ee)",
|
|
} as const;
|