| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| export const colors = { |
| |
| tigerOrange: "#FF6B00", |
| tigerOrangeHover: "#E55F00", |
| tigerOrangeLight: "#FFF4EB", |
| tigerOrangeMuted: "#FF8C35", |
|
|
| |
| tigerNavy: "#002B49", |
| tigerNavyLight: "#003D6B", |
| electricBlue: "#0072CE", |
| electricBlueLight: "#E6F4FF", |
|
|
| |
| canvas: "#faf9f5", |
| surfaceSoft: "#f5f0e8", |
| surfaceCard: "#efe9de", |
| surfaceCreamStrong:"#e8e0d2", |
| surfaceDark: "#181715", |
| surfaceDarkElev: "#252320", |
| surfaceDarkSoft: "#1f1e1b", |
|
|
| |
| coral: "#cc785c", |
| coralActive: "#a9583e", |
| coralDisabled: "#e6dfd8", |
| accentTeal: "#5db8a6", |
| accentAmber: "#e8a55a", |
|
|
| |
| ink: "#141413", |
| bodyStrong: "#252523", |
| body: "#3d3d3a", |
| muted: "#6c6a64", |
| mutedSoft: "#8e8b82", |
| onPrimary: "#ffffff", |
| onDark: "#faf9f5", |
| onDarkSoft: "#a09d96", |
|
|
| |
| hairline: "#e6dfd8", |
| hairlineSoft: "#ebe6df", |
|
|
| |
| success: "#5db872", |
| successLight: "#ecf7ef", |
| warning: "#d4a017", |
| warningLight: "#fdf6e3", |
| error: "#c64545", |
| errorLight: "#fdf0f0", |
|
|
| |
| baseline: "#0072CE", |
| graphrag: "#FF6B00", |
| baselineLight: "#E6F4FF", |
| graphragLight: "#FFF4EB", |
| } as const; |
|
|
| export const typography = { |
| fontSerif: "'Cormorant Garamond', 'EB Garamond', 'Times New Roman', serif", |
| fontSans: "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif", |
| fontMono: "'JetBrains Mono', 'Fira Code', 'Cascadia Code', Consolas, monospace", |
| } as const; |
|
|
| export const spacing = { |
| xxs: "4px", |
| xs: "8px", |
| sm: "12px", |
| md: "16px", |
| lg: "24px", |
| xl: "32px", |
| xxl: "48px", |
| section: "96px", |
| } as const; |
|
|
| export const rounded = { |
| xs: "4px", |
| sm: "6px", |
| md: "8px", |
| lg: "12px", |
| xl: "16px", |
| pill: "9999px", |
| full: "50%", |
| } as const; |
|
|
| |
| export const chartTokens = { |
| baseline: { |
| stroke: colors.baseline, |
| fill: colors.baseline, |
| fillOpacity: 0.15, |
| name: "Baseline RAG", |
| }, |
| graphrag: { |
| stroke: colors.graphrag, |
| fill: colors.graphrag, |
| fillOpacity: 0.15, |
| name: "GraphRAG", |
| }, |
| grid: { |
| stroke: colors.tigerNavy, |
| strokeOpacity: 0.1, |
| }, |
| tooltip: { |
| background: colors.canvas, |
| border: colors.hairline, |
| text: colors.ink, |
| }, |
| } as const; |
|
|
| export type ColorKey = keyof typeof colors; |
|
|