/* 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, #2563eb);
    --primary: var(--color1, #2563eb);
    --primary-hover: color-mix(in srgb, var(--color1, #2563eb) 85%, black);
    --primary-light: color-mix(in srgb, var(--color1, #2563eb) 10%, transparent);
    --chart-1: var(--color1, #2563eb);
    --ring: var(--color1, #2563eb);

    /* Background can use color2 for subtle tint */
    /* --sentient-bg-primary stays white/light for text readability */
}
