Commits
Yura Bondarenko authored f3faa0df2ca
5 5 | $sidebar-items-width: 250px !default; |
6 6 | $total-sidebar-width: $collapsed-sidebar-width + $sidebar-items-width !default; |
7 7 | |
8 8 | /* Fonts */ |
9 9 | $fa-font-path: "/assets/fonts" !default; |
10 10 | /* Images */ |
11 11 | $image-path: "../assets/images" !default; |
12 12 | |
13 13 | /** Bootstrap Variables **/ |
14 14 | /* Colors */ |
15 - | $gray-base: #000 !default; |
16 - | $gray-900: lighten($gray-base, 13.5%) !default; // #222 |
17 - | $gray-800: lighten($gray-base, 26.6%) !default; // #444 |
18 - | $gray-700: lighten($gray-base, 46.6%) !default; // #777 |
19 - | $gray-600: lighten($gray-base, 73.3%) !default; // #bbb |
20 - | $gray-100: lighten($gray-base, 93.5%) !default; // #eee |
21 15 | |
22 16 | /* Reassign color vars to semantic color scheme */ |
23 17 | $blue: #2B4E72 !default; |
24 18 | $green: #94BA65 !default; |
25 19 | $cyan: #006666 !default; |
26 20 | $yellow: #ec9433 !default; |
27 21 | $red: #CF4444 !default; |
28 22 | $dark: darken($blue, 17%) !default; |
29 23 | |
30 24 | $theme-colors: ( |
31 25 | primary: $blue, |
32 - | secondary: $gray-700, |
26 + | secondary: #495057, // Bootstrap $gray-700 |
33 27 | success: $green, |
34 28 | info: $cyan, |
35 29 | warning: $yellow, |
36 30 | danger: $red, |
37 - | light: $gray-100, |
31 + | light: #f8f9fa, // Bootstrap $gray-100 |
38 32 | dark: $dark |
39 33 | ) !default; |
40 34 | /* Fonts */ |
41 35 | $link-color: map-get($theme-colors, info) !default; |
42 36 | |
43 37 | $navbar-dark-color: rgba(white, .5) !default; |
44 38 | $navbar-light-color: rgba(black, .5) !default; |
45 39 | $navbar-dark-toggler-icon-bg: url("data:image/svg+xml;charset=utf8,<svg+viewBox='0+0+30+30'+xmlns='http://www.w3.org/2000/svg'><path+stroke='#{$navbar-dark-color}'+stroke-width='2'+stroke-linecap='round'+stroke-miterlimit='10'+d='M4+7h22M4+15h22M4+23h22'/></svg>") !default; |
46 40 | $navbar-light-toggler-icon-bg: url("data:image/svg+xml;charset=utf8,<svg+viewBox='0+0+30+30'+xmlns='http://www.w3.org/2000/svg'><path+stroke='#{$navbar-light-color}'+stroke-width='2'+stroke-linecap='round'+stroke-miterlimit='10'+d='M4+7h22M4+15h22M4+23h22'/></svg>") !default; |
47 41 | |