/* Blues template */
:root {
	/*Brand color*/
    --brand-color-1: #b70000 ;
    --brand-color-1-hover: #e8e8e8;
    --brand-color-2: #c0f7c4;
    --brand-color-2-hover: #e6a500;
    --brand-color-3: #860000;
    --brand-color-text: #fbfbfb;

    /*Background gradients*/
    --brand-gradient-1: none;
    --brand-gradient-2: none;
    --brand-gradient-3: none;

    /*Background colors*/
    --background-color-1: #12141a;
    --background-color-2: #1a1d26;
    --background-color-3: #232733;
    --background-color-3-hover: #291c1c;
    --background-color-4: #2c3140;
    --background-color-4-hover: #382626;
    --background-color-5: #353b4d;
    --background-color-6: #12141a;

    /*Background gradients*/
    --background-gradient-1: none;
    --background-gradient-2: none;
    --background-gradient-3: none;
    --background-gradient-4: none;
    --background-gradient-5: none;
    --background-gradient-6: none;

    /*Text colors*/
    --text-color-1: #666666;
    --text-color-2: #999999;
    --text-color-3: #B3B3B3;
    --text-color-4: #CCCCCC;

    /*Default immutable colors*/
    --white-color: #fff;
    --black-color: #000;
    --error-color: #f02849;
    --success-color: #009900;
    --info-color: #FFB700;

    /*Fonts and Styles*/
    --font-family-1: 'Roboto', sans-serif;
    
    /* Border Radiuses */
    --btn-radius-top-left: 2px;
    --btn-radius-top-right: 2px;
    --btn-radius-bottom-left: 2px;
    --btn-radius-bottom-right: 2px;

    --input-radius-top-left: 2px;
    --input-radius-top-right: 2px;
    --input-radius-bottom-left: 2px;
    --input-radius-bottom-right: 2px;

    --odd-radius-top-left: 2px;
    --odd-radius-top-right: 2px;
    --odd-radius-bottom-left: 2px;
    --odd-radius-bottom-right: 2px;

    --modal-bg-color-1: #fff;
    --modal-bg-color-2: #f4f4f4;
    --modal-bg-color-3: #e8e8e8;
    --modal-bg-color-4: #c7c7c7;

    --modal-text-color-1: #1a1a1a;      
    --modal-text-color-2: #3d3d3d;      
    --modal-text-color-3: #999;    
}

:root[data-theme="light"] {
	--background-color-1: #ffffff;
	--background-color-2: #f2f2f2;
	--background-color-3: #ededef;
	--background-color-4: #e5e5e5;
	--background-color-5: #eaeaea;
    --background-color-6: #bcbcbc;

	--text-color-1: #424549 ;
	--text-color-2: #4c5259;
	--text-color-3: #424549;
	--text-color-4: #2a2b2d;

    --modal-bg-color-1: #fff;
    --modal-bg-color-2: #f4f4f4;
    --modal-bg-color-3: #e8e8e8;
    --modal-bg-color-4: #c7c7c7;

    --modal-text-color-1: #1a1a1a;      
    --modal-text-color-2: #3d3d3d;      
    --modal-text-color-3: #999;    
}

:root[data-theme="dark"] {
	--background-color-1: #12141A;
	--background-color-2: #1A1D26;
	--background-color-3: #232733;
	--background-color-4: #2C3140;
	--background-color-5: #353B4D;
    --background-color-6: #12141A;

	--text-color-1: #B7AEAE;
	--text-color-2: #BFBFBF;
	--text-color-3: #cccccc;
	--text-color-4: #D9D9D9;

    --modal-bg-color-1: #2C2D3A;
    --modal-bg-color-2: #363747; 
    --modal-bg-color-3: #3B3D4F;
    --modal-bg-color-4: #48495A; 

    --modal-text-color-1: #fff;     
    --modal-text-color-2: #ccc;     
    --modal-text-color-3: #999;   
}