Commits
Yura Bondarenko authored 3a8e658d54a
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-700: #495057; !default // Bootstrap $gray-700 |
16 + | $gray-100: #f8f9fa; !default // $gray-100 |
15 17 | |
16 18 | /* Reassign color vars to semantic color scheme */ |
17 19 | $blue: #2B4E72 !default; |
18 20 | $green: #94BA65 !default; |
19 21 | $cyan: #006666 !default; |
20 22 | $yellow: #ec9433 !default; |
21 23 | $red: #CF4444 !default; |
22 24 | $dark: darken($blue, 17%) !default; |
23 25 | |
24 26 | $theme-colors: ( |
25 27 | primary: $blue, |
26 - | secondary: #495057, // Bootstrap $gray-700 |
28 + | secondary: $gray-700, |
27 29 | success: $green, |
28 30 | info: $cyan, |
29 31 | warning: $yellow, |
30 32 | danger: $red, |
31 - | light: #f8f9fa, // Bootstrap $gray-100 |
33 + | light: $gray-100, |
32 34 | dark: $dark |
33 35 | ) !default; |
34 36 | /* Fonts */ |
35 37 | $link-color: map-get($theme-colors, info) !default; |
36 38 | |
37 39 | $navbar-dark-color: rgba(white, .5) !default; |
38 40 | $navbar-light-color: rgba(black, .5) !default; |
39 41 | $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; |
40 42 | $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; |
41 43 | |