2021-07-25 07:16:35 -04:00
|
|
|
// Colors
|
2021-07-29 18:46:27 -04:00
|
|
|
// scss-docs-start color-variables
|
|
|
|
$blue: #0d6efd;
|
|
|
|
$indigo: #6610f2;
|
|
|
|
$purple: #6f42c1;
|
|
|
|
$pink: #d63384;
|
2021-08-02 21:32:27 -04:00
|
|
|
$red: #eb2744;
|
2021-07-29 18:46:27 -04:00
|
|
|
$orange: #fd7e14;
|
2021-08-02 21:32:27 -04:00
|
|
|
$yellow: #EECF6D;
|
|
|
|
$green: #1db954;
|
2021-07-29 18:46:27 -04:00
|
|
|
$teal: #20c997;
|
|
|
|
$cyan: #0dcaf0;
|
|
|
|
// scss-docs-end color-variables
|
2021-07-25 07:16:35 -04:00
|
|
|
|
2021-07-28 19:05:47 -04:00
|
|
|
// define black, white, gray
|
2021-07-25 07:16:35 -04:00
|
|
|
$white: #fff;
|
|
|
|
$black: #000;
|
2021-07-28 19:05:47 -04:00
|
|
|
$gray: #7d756c; // 6c757d 7d756c
|
|
|
|
|
|
|
|
// define gray scale
|
|
|
|
$gray-100: tint-color($gray, 80%);
|
|
|
|
$gray-200: tint-color($gray, 60%);
|
|
|
|
$gray-300: tint-color($gray, 40%);
|
|
|
|
$gray-400: tint-color($gray, 20%);
|
|
|
|
$gray-500: $gray;
|
|
|
|
$gray-600: shade-color($gray, 20%);
|
|
|
|
$gray-700: shade-color($gray, 40%);
|
|
|
|
$gray-750: shade-color($gray, 50%);
|
|
|
|
$gray-800: shade-color($gray, 60%);
|
|
|
|
$gray-900: shade-color($gray, 80%);
|
2021-07-25 07:16:35 -04:00
|
|
|
|
2021-07-29 18:46:27 -04:00
|
|
|
|
2021-08-02 21:32:27 -04:00
|
|
|
// spaceblue is based on coolors.co 'space cadet' #/* 212c40 */ which was bg color in Lester's original design
|
2021-07-25 07:16:35 -04:00
|
|
|
// background will be spaceblue-800
|
|
|
|
$spaceblue-100: #aebcd5;
|
|
|
|
$spaceblue-200: #93a6c8;
|
|
|
|
$spaceblue-300: #788fba;
|
|
|
|
$spaceblue-400: #5d79ac;
|
|
|
|
$spaceblue-500: #4c6594;
|
|
|
|
$spaceblue-600: #3e5379;
|
|
|
|
$spaceblue-700: #31415e;
|
2021-07-27 19:12:18 -04:00
|
|
|
$spaceblue-750: #2a3751;
|
2021-07-25 07:16:35 -04:00
|
|
|
$spaceblue-800: #212c40;
|
2021-07-27 19:12:18 -04:00
|
|
|
$spaceblue-850: #1c2536;
|
2021-07-25 07:16:35 -04:00
|
|
|
$spaceblue-900: #151c28;
|
|
|
|
|
|
|
|
|
2021-07-29 18:46:27 -04:00
|
|
|
// scss-docs-start theme-color-variables
|
|
|
|
$primary: #51A39F;
|
2021-08-02 21:32:27 -04:00
|
|
|
$secondary: #BF98A0;
|
2021-07-29 18:46:27 -04:00
|
|
|
$success: $green;
|
|
|
|
$info: $cyan;
|
|
|
|
$warning: $yellow;
|
|
|
|
$danger: $red;
|
|
|
|
$light: $spaceblue-100;
|
|
|
|
$dark: $spaceblue-900;
|
|
|
|
// scss-docs-end theme-color-variables
|
|
|
|
|
|
|
|
|
2021-07-25 07:16:35 -04:00
|
|
|
// Create your own map
|
|
|
|
$custom-colors: (
|
|
|
|
"primary": $primary,
|
|
|
|
"secondary": $secondary,
|
|
|
|
"success": $success,
|
|
|
|
"info": $info,
|
|
|
|
"warning": $warning,
|
|
|
|
"danger": $danger,
|
|
|
|
"light": $light,
|
|
|
|
"dark": $dark,
|
2021-07-28 19:05:47 -04:00
|
|
|
"gray": $gray-600,
|
|
|
|
"gray-dark": $gray-800
|
2021-07-25 07:16:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2021-07-29 18:46:27 -04:00
|
|
|
$body-bg: $spaceblue-800;
|
|
|
|
$body-color: $gray-200;
|
|
|
|
$text-muted: $gray-400;
|
|
|
|
$component-active-color: $dark;
|
2021-07-25 07:16:35 -04:00
|
|
|
$component-active-bg: $primary;
|
2021-08-02 21:32:27 -04:00
|
|
|
|
|
|
|
$component-hover-color: tint-color($light, 5%);
|
|
|
|
$component-hover-bg: rgba($white, .125);
|