/* ==========================================================================
 * orange-1:        hsl(26, 100%, 38%)
 * orange-1 cta:    hsl(26, 100%, 35%)
 * Abweichende Call-to-Action Farbe wegen Kontrast
 * color-highlight entspricht color
 * und wird für flächige Elemtente verwendet.
   ========================================================================== */

:root {
    --color: 26, 100%; /* base color */
    --l: 38%; /* initial lightness */
    --color-cta: var(--color); /* call to action color */
    --l-cta: 35%; /* 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: #b54e00; /* amChart hack */
    --nbg-theme-bg-highlight-hex-dark: #ed9c5e; /* amChart hack fuer darkmode*/
    --constant-theme-bg: hsl(26, 100%, 38%); /* bleibt unverändert auch im darkmode */
    --constant-theme-bg-highlight: hsl(26, 100%, 38%); /* bleibt unverändert auch im darkmode */
}

.dark {
    --color: 26, 80%; /* base color */
    --l: 58%; /* initial lightness */
    --l-cta: 65%; /* initial lightness call to action color */
}
