38 lines
686 B
SCSS
38 lines
686 B
SCSS
$body-bg: #e5e5e5;
|
|
$primary: #3ba5dc;
|
|
$secondary: #8392ab;
|
|
$success: #00f867;
|
|
$info: #5d0149;
|
|
$warning: #fbcf33;
|
|
$danger: #ea0606;
|
|
$light: #e9ecef;
|
|
$dark: #111927;
|
|
$grey: #cbcbcb;
|
|
|
|
$font-sans-serif: Open Sans;
|
|
$font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
$gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
|
|
|
|
$colors: (
|
|
"primary": $primary,
|
|
"secondary": $secondary,
|
|
"danger": $danger,
|
|
"success": $success,
|
|
"warning": $warning,
|
|
"info": $info,
|
|
"dark": $dark,
|
|
"grey": $grey,
|
|
);
|
|
|
|
$color-ranges: (
|
|
0: 0,
|
|
5: 5,
|
|
10: 10,
|
|
15: 15,
|
|
20: 20,
|
|
25: 25,
|
|
30: 30,
|
|
35: 35,
|
|
40: 40,
|
|
);
|