botui/ui/suite/css/config-colors.css
Rodrigo Rodriguez a8bc5530b0 Add config-colors.css and update UI components
- Add config-colors.css for dynamic color theming
- Update base.html, chat components for better UX
- Improve theme manager and HTMX app integration
2026-02-10 13:54:16 +00:00

16 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 */
}