/* ==========================================================================
 * indigo-1:        hsl(240, 66%, 35%)
 * indigo-1 cta:    hsl(234, 53%, 56%)
 * Abweichende Call-to-Action Farbe wegen Kontrast
 * color-highlight entspricht color
 * und wird für flächige Elemtente verwendet.
   ========================================================================== */

:root {
    --color: 240, 66%; /* base color */
    --l: 35%; /* initial lightness */
    --color-cta: 234, 53%; /* call to action color */
    --l-cta: 56%; /* initial lightness call to action color */
    --color-highlight: var(--color); /* color highlight */
    --l-highlight: var(--l); /* initial lightness color highlight */
    --l-modifier: 7%; /* added to lightness */
    --l-modifier-pastel: 57%; /* added to lightness to create a pastel version of the theme highlight color)*/

    --nbg-theme-bg-highlight-hex: #535fca; /* amChart hack */
    --nbg-theme-bg-highlight-hex-dark: #a7addc; /* amChart hack fuer darkmode*/
    --constant-theme-bg: hsl(240, 66%, 35%); /* bleibt unverändert auch im darkmode */
    --constant-theme-bg-highlight: hsl(240, 66%, 35%); /* bleibt unverändert auch im darkmode */
}

.dark {
    --l: 70%; /* initial lightness */
    --color-cta: 234, 43%; /* call to action color */
    --l-cta: 76%; /* initial lightness call to action color */
}
