CyberEgg 2077
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 lines
1.1 KiB

/*
* Define variables as LESS variables for use with all the LESS tools.
*/
@brand-color : rgb(4, 130, 216);
@brand-color-80pct : rgba(4, 130, 216, 0.8);
@brand-color-50pct : rgba(4, 130, 216, 0.5);
@direction-btn-color : rgb(0,0,0);
@direction-btn-color-80pct : rgba(0,0,0, 0.8);
@direction-btn-color-50pct : rgba(0,0,0, 0.5);
@background-color : #1a1a1a;
@text-color : #e8e8e8;
// @background-color : #fafafa;
// @text-color : #1a1a1a;
@default-margin : 30px;
/*
* Expose LESS variables also as CSS variables, which are more configurable at
* runtime or with user settings.
*/
* {
--brand-color : @brand-color;
--brand-color-80pct : @brand-color-80pct;
--brand-color-50pct : @brand-color-50pct;
--direction-btn-color : @direction-btn-color;
--direction-btn-color-80pct : @direction-btn-color-80pct;
--direction-btn-color-50pct : @direction-btn-color-50pct;
--background-color : @background-color;
--text-color : @text-color;
--default-margin : @default-margin;
}