/*
This file should only be used by hesk clients to apply any custom overwrites to core files,
and ensure these changes are included in the bundled css.

Please only change this file if you know what you are doing.
Any general thematic changes should rather be done as part of /theme changes of theme_overrides.css
*/
:root {
    /* START MAIN theme colors:
        These are THE MAIN color that really define a theme's look.
        Usually, changing these, will affect "90%" of the look, as most other colors are in some way derived from these.
    */
    --primary: #465e13;
    --secondary: #5f9e2b;
    --tertiary: #96e516;

    --surface: #ffffff; /* TODO ideally surface should be reserved for box backgrounds only, and any texts/icons should rather use somehting like --light */
     --foreground: #465e13; /* TODO currently not really used in any way */

    --main-background: #e9f0f3;
    /*--main-background: color-mix(in srgb, var(--tertiary) 5%, var(--white-1));*/ /* TODO Use this if you want to automatically base it off main theme colors */

    --font__pri-clr: #465e13; /* primary font color used by wrapper/body */
    --font__sec-clr: #2b6d9e; /* secondary (lighter) font color used by wrapper/body */
        /* END MAIN theme colors */
}