/*
Template:   This file is specific for Laravel projects
Info:       This file will contain project specific variables as colors
Web:        http://www.itmaniax.com
*/
/*****************************************************************************/
/*
Syntax: "var(custom-name, value)"

Possible values for "value":
    #fff
    15px
    FontAwesome
    ...etc...

How to give the name of the variable.
    custom-name="--CSS-PROPERTIES_INTUITIVE-NAME_PSEUDO-CLASS"

"custom name" parts:
    1. "--" - mandatory
    2. "CSS-PROPERTIES" - mandatory
    3. "INTUITIVE-NAME" - mandatory
    4. "PSEUDO-CLASS" - optional
*/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/****   COLORS      **********************************************************/
/*****************************************************************************/
:root {
    --color_success: #34DD79;
    --color_success-hover: #42BD74;
    --color_primary_light: #cce5ff;
    --color_primary_light-hover: #afd2f8;
}
/*****************************************************************************/
/****   THEME      **********************************************************/
/*****************************************************************************/
:root {
    --theme_color_primary: var(--color_success);
    --theme_color_primary-hover: var(--color_success-hover);
    --theme_color_secondary: #343a40;
    --theme_color_secondary-hover: #212529;
}

/*****************************************************************************/
/****   FONTS       **********************************************************/
/*****************************************************************************/
:root {
    --font_fa: FontAwesome;
    --font_f-1_regular: ;
    --font_f-1_semi-bold: ;
    --font_f-1_bold: ;
    --font_f-1_extra-bold: ;
    --font_f-1_medium-italic: ;
    --font_f-2_regular: ;
    --font_f-2_semi-bold: ;
    --font_f-2_bold: ;
    --font_f-2_extra-bold: ;
    --font_f-2_medium-italic: ;
}
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
