/* 
-----------------------------------------
COLORS
-----------------------------------------
*/
:root {
    /***************************************************************/
    /*------------------ PROJECT SPECIFIC COLORS ------------------*/
    /*---- CHANGE THIS PART ACCORDING TO PROJECT COLOR PALETTE ----*/
    /*---- COLORS MARKED 'BASE' ARE USED IN base.css BY DEFAULT ---*/
    /***************************************************************/
    /* Primary colors */
    --primary-color: #C1AB7D; /* BASE */
    --primary-black: #000000;
    --primary-dark: #2E2E2E;
    --primary-white: #ffffff;
    --primary-red: #EE3740;
    --primary-gray: #858585;
    --text-lightgray: #CFCFCF;
    /* Secondary colors */
    --secondary-color: #001F36; /* BASE */
    --secondary-color-light: #00609F;
    /* Neutral colors */
    --neutral-color-dark: #cccccc; /* BASE */
    --neutral-color-light: #f8f8f8; /* BASE */
    --neutral-color: #666666;
    /* Text colors */
    --text-blue: #00AAD2; /* BASE */
    --text-white: #ffffff; /* BASE */
    --text-black: #000000;
    --text-color-red: #ee3740;
    --text-primary: var(--primary-color);
    --text-secondary: var(--secondary-color);
    /* Accent colors */
    --accent-color: #4FBAC7; /* BASE */
    /* Complimentary colors */
    --accent-polarmarine: #7AC3A1;
    --accent-kockumsonics: #FCC00C;
}
