/* ==========================================================================
 * lindgruen-2:         hsl(81, 71%, 29%)
 * lindgruen-2 cta:     hsl(81, 76%, 26%)
 * Abweichende Call-to-Action Farbe wegen Kontrast
 * color-highlight entspricht color
 * und wird für flächige Elemtente verwendet.
   ========================================================================== */

:root {
    --color: 81, 71%; /* base color */
    --l: 29%; /* initial lightness */
    --color-cta: 81, 76%; /* call to action color */
    --l-cta: 26%; /* 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: 65%; /* added to lightness to create a pastel version of the theme highlight color)*/

    --nbg-theme-bg-highlight-hex: #517510; /* amChart hack */
    --nbg-theme-bg-highlight-hex-dark: #9cc157; /* amChart hack fuer darkmode*/
    --constant-theme-bg: hsl(81, 71%, 29%); /* bleibt unverändert auch im darkmode */
    --constant-theme-bg-highlight: hsl(81, 71%, 29%); /* bleibt unverändert auch im darkmode */
}

.dark {
    --l: 55%; /* initial lightness */
    --color-cta: 81, 46%; /* call to action color */
    --l-cta: var(--l) /* initial lightness call to action color */
}
