/* ==========================================================================
 * hellblau-1:      hsl(197, 100%, 25%)
 * hellblau-1 cta:  hsl(197, 100%, 25%)
 * color-highlight entspricht color
 * und wird für flächige Elemtente verwendet.
   ========================================================================== */

:root {
    --color: 197, 100%; /* base color */
    --l: 25%; /* initial lightness */
    --color-cta: var(--color); /* call to action color */
    --l-cta: var(--l); /* initial lightness call to action color */
    --color-highlight: var(--color); /* button color */
    --l-highlight: var(--l); /* initial lightness icon hover color */
    --l-modifier: 7%; /* added to lightness */
    --l-modifier-pastel: 70%; /* added to lightness to create a pastel version of the theme highlight color)*/

    --nbg-theme-bg-highlight-hex: #005b80; /* amChart hack */
    --nbg-theme-bg-highlight-hex-dark: #9bdced; /* amChart hack fuer darkmode*/
    --constant-theme-bg: hsl(197, 100%, 25%); /* bleibt unverändert auch im darkmode */
    --constant-theme-bg-highlight: hsl(197, 100%, 25%); /* bleibt unverändert auch im darkmode */
}

.dark {
    --l: 55%; /* initial lightness */
    --color-cta: 197, 70%; /* call to action color */
    --l-cta: 77%; /* initial lightness call to action color */
}
