:root
{
    /* Main color of theme, its the striking color of the customer */
	--COLOR_MAIN: rgba(6, 44, 80, 1);
	--COLOR_MAIN90: rgba(6, 44, 80, 0.9);
	--COLOR_MAIN80: rgba(6, 44, 80, 0.8);
	--COLOR_MAIN70: rgba(6, 44, 80, 0.7);
	--COLOR_MAIN60: rgba(6, 44, 80, 0.6);
	--COLOR_MAIN50: rgba(6, 44, 80, 0.5);
	--COLOR_MAIN40: rgba(6, 44, 80, 0.4);
	--COLOR_MAIN30: rgba(6, 44, 80, 0.3);
	--COLOR_MAIN20: rgba(6, 44, 80, 0.2);
	--COLOR_MAIN10: rgba(6, 44, 80, 0.1);
    
    /* this color is used to highlight a button or an activ function which is activated but not clciked or hovered */
	--COLOR_ACTIVE50: rgba(255, 170, 0, 0.5);
	--COLOR_ACTIVE: rgba(255, 170, 0, 1);
    
    /* Basis background color, should be neutral */
	--COLOR_BACKGROUND: rgba(256, 256, 256, 1);    
	--COLOR_BACKGROUND80: rgba(256, 256, 256, 0.8);
    
    /* install */
	--COLOR_BACKGROUND_CONTRAST_LIGHT: #E8E8E8;
	--COLOR_BACKGROUND_CONTRAST: LightGray;
	--COLOR_BACKGROUND_CONTRAST_DARK: Gray;    
    
    /* Button color and selected button without special highlight */
	--COLOR_BUTTON: #e7e7e7;
	--COLOR_BUTTON_SELECTED: #beb9b9;
    
    /* Warn and Positive hints */
	--COLOR_WARN: rgba(256, 0, 0, 1);
	--COLOR_POSITIV: rgba(50, 205, 50, 1);
	--COLOR_POSITIVDark: rgba(0, 134, 0, 1);
    
    /* spezific colors */    
	--COLOR_WHITE: rgba(256, 256, 256, 1);
}


