Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
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.
 
 
 

32 lines
659 B

/**
*
*
*/
$crispy__font-family: 'IBM Plex Mono';
/**
* colors
*
*/
$crispy__color-primary: #4ecdc4;
$crispy__color-danger: #ff6b6b;
$crispy__color-warning: #ffe66d;
$crispy__color-success: #44cf6c;
//$crispy__color-grey-light:
//$crispy__color-grey:
//$crispy__color-grey-dark:
$crispy__color-white: #f7fff7;
$crispy__color-background: #292f36;
$crispy__color-text: $crispy__color-white;
// colors as map
$crispy__colors: (
'primary' : $crispy__color-primary,
'success' : $crispy__color-success,
'warning' : $crispy__color-warning,
'danger' : $crispy__color-danger,
'white' : $crispy__color-white
) !default;