:root {
--config-color-primary: {{ getConfig('primary_color') }};
--config-color-secondary: {{ getConfig('secondary_color') }};
--flat: {{ getConfig('flat_design')? 0 : 1 }};
--config-font-family: {{ getConfig('website_font_family')? getConfig('website_font_family')|raw : 'Lato, Arial, sans-serif' }};
{# DARK THEME #}
{% if isDarkTheme and not preventDarkTheme|default(false) %}
--config-color-tx: #fff;
--config-color-tx-alt: #666;
--config-color-tx-sec: #aaa;
--config-color-bg: #101010;
--config-color-bg-alt: #101010;
--config-color-bg-img: #333;
--config-color-bg-box: #151515;
--config-color-borda: #444;
{% set hsl = HEXtoHSL(getConfig('primary_color')) %}
{# Background decoration #}
--config-color-hue: {{ hsl.0 }};
{# Achromatic #}
{% if hsl.1 == 0 %}
--config-color-saturation-1: 0%;
--config-color-saturation-2: 0%;
{# Chromatic #}
{% else %}
--config-color-saturation-1: 74%;
--config-color-saturation-2: 86%;
{% endif %}
{# LIGHT THEME #}
{% else %}
--config-color-tx: #666;
--config-color-tx-alt: #fff;
--config-color-tx-sec: #bbb;
--config-color-bg: #fff;
--config-color-bg-alt: #fbf7f6;
--config-color-bg-img: #e6e6e6;
--config-color-bg-box: #fff;
--config-color-borda: #ccc;
{% endif %}
}