17 lines
681 B
CSS
17 lines
681 B
CSS
|
|
/* Config Color Overrides */
|
||
|
|
/* Maps theme-color1 and theme-color2 from config.csv to actual theme variables */
|
||
|
|
|
||
|
|
:root {
|
||
|
|
/* Use --color1 and --color2 from config.csv, with fallback defaults */
|
||
|
|
--sentient-accent: var(--color1, #3b82f6);
|
||
|
|
--primary: var(--color1, #3b82f6);
|
||
|
|
--primary-hover: color-mix(in srgb, var(--color1, #3b82f6) 85%, black);
|
||
|
|
--primary-light: color-mix(in srgb, var(--color1, #3b82f6) 10%, transparent);
|
||
|
|
--chart-1: var(--color1, #3b82f6);
|
||
|
|
--chart-2: var(--color2, #f59e0b);
|
||
|
|
--ring: var(--color1, #3b82f6);
|
||
|
|
|
||
|
|
/* Background can use color2 for subtle tint */
|
||
|
|
/* --sentient-bg-primary stays white/light for text readability */
|
||
|
|
}
|