2018-04-03 14:16:57 +00:00
|
|
|
$vault-grey: #6a7786;
|
|
|
|
// ui colors
|
|
|
|
$grey-light: #bbc4d1;
|
|
|
|
$grey-lighter: #f9f9f9;
|
|
|
|
$grey: #929dab;
|
|
|
|
$grey-dark: $vault-grey;
|
|
|
|
$blue: #1563ff;
|
|
|
|
|
|
|
|
//
|
|
|
|
$orange: #f9bb2d;
|
|
|
|
$light-orange: rgb(255, 254, 218);
|
|
|
|
$light-yellow: #fffbee;
|
|
|
|
$dark-yellow: #614903;
|
|
|
|
$light-red: #fff5f8;
|
|
|
|
$dark-red: #c84034;
|
|
|
|
$light-blue: #e2eafa;
|
|
|
|
$dark-blue: #1563ff;
|
|
|
|
$light-blue: rgb(218, 234, 247);
|
|
|
|
$dark-green: #36ae40;
|
|
|
|
$light-green: rgb(244, 250, 236);
|
|
|
|
$light-white: #f9f8fe;
|
|
|
|
$dark-white: #f9f9f9;
|
|
|
|
$white-ter: rgba($white, .5);
|
|
|
|
$white-bis: $dark-white;
|
|
|
|
|
|
|
|
// Primary colors
|
|
|
|
$success: $dark-green;
|
|
|
|
$danger: $dark-red;
|
|
|
|
$warning: $light-yellow;
|
|
|
|
$primary: $grey-dark;
|
|
|
|
$code: $grey-dark;
|
|
|
|
$code-background: transparent;
|
|
|
|
$info: $dark-blue;
|
|
|
|
$light: $grey-lighter;
|
|
|
|
$border: $grey-light;
|
|
|
|
|
|
|
|
$hr-margin: 1rem 0;
|
|
|
|
|
|
|
|
//typography
|
2018-05-25 20:33:22 +00:00
|
|
|
$family-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
|
|
|
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
|
|
sans-serif;
|
2018-04-03 14:16:57 +00:00
|
|
|
$family-primary: $family-sans;
|
|
|
|
$body-size: 14px;
|
|
|
|
$size-3: (24/14) + 0rem;
|
|
|
|
$size-7: (13/14) + 0rem;
|
|
|
|
$size-8: (12/14) + 0rem;
|
|
|
|
$size-9: 0.75rem;
|
|
|
|
$size-10: 0.5rem;
|
|
|
|
$size-11: 0.25rem;
|
2018-05-25 20:33:22 +00:00
|
|
|
$console-spacing: 1.5rem;
|
2018-04-03 14:16:57 +00:00
|
|
|
$size-small: $size-8;
|
|
|
|
$font-weight-normal: 400;
|
|
|
|
$font-weight-semibold: 600;
|
|
|
|
$font-weight-bold: 700;
|
|
|
|
|
|
|
|
//input
|
|
|
|
$input-background-color: $dark-white;
|
|
|
|
$input-focus-background-color: $white;
|
|
|
|
$input-border-color: $grey;
|
|
|
|
|
|
|
|
$radius: 2px;
|
|
|
|
|
|
|
|
//box
|
|
|
|
$box-radius: 0;
|
|
|
|
$box-shadow: 0 0 0 1px rgba($black, 0.1);
|
2018-05-24 17:09:50 +00:00
|
|
|
$box-shadow-low: 0 5px 1px -2px rgba($black, 0.12), 0 3px 2px -1px rgba($black, 0);
|
|
|
|
$box-shadow-middle: 0 8px 4px -4px rgba($black, 0.10), 0 6px 8px -2px rgba($black, 0.05);
|
|
|
|
$box-shadow-high: 0 12px 5px -7px rgba($black, 0.08), 0 11px 10px -3px rgba($black, 0.10);
|
|
|
|
$box-shadow-highest: 0 16px 6px -10px rgba($black, 0.06), 0 16px 16px -4px rgba($black, 0.20);
|
2018-04-03 14:16:57 +00:00
|
|
|
|
|
|
|
$link: $blue;
|
|
|
|
$text: $black;
|
|
|
|
|
|
|
|
$breadcrumb-item-color: $blue;
|
|
|
|
$breadcrumb-item-separator-color: rgba($blue, 0.5);
|
|
|
|
$breadcrumb-item-active-color: $black;
|
|
|
|
|
|
|
|
$navbar-background-color: transparent;
|
|
|
|
|
|
|
|
$menu-item-hover-background-color: $blue;
|
|
|
|
$menu-item-hover-color: $white;
|
|
|
|
|
|
|
|
$progress-bar-background-color: lighten($grey-light, 15%);
|
|
|
|
|
|
|
|
$base-border: 1px solid $grey-light;
|
|
|
|
|
2018-05-24 17:09:50 +00:00
|
|
|
//menu
|
|
|
|
$menu-item-hover-color: $text;
|
|
|
|
$menu-item-hover-background-color: $grey-lighter;
|
|
|
|
$menu-item-active-color: $link;
|
|
|
|
$menu-item-active-background-color: transparent;
|
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
// animations
|
|
|
|
$speed: 150ms;
|
|
|
|
$speed-slow: $speed * 2;
|