|
1 | 1 | /*-- scss:defaults --*/
|
| 2 | +// Cosmo 5.3.3 |
| 3 | +// Bootswatch |
2 | 4 |
|
3 |
| -$navbar-bg: #192222; |
4 |
| -$navbar-fg: #1bb3ac; |
5 |
| -$footer-bg: #192222; |
6 |
| -$footer-fg: #1bb3ac; |
7 |
| -$body-color: #fff; |
8 |
| -$body-bg: #131818; |
| 5 | +$theme: "cosmo" !default; |
9 | 6 |
|
10 |
| -a { |
11 |
| - color: #2aa198 !important; |
| 7 | +// |
| 8 | +// Color system |
| 9 | +// |
| 10 | +// manually-added color |
| 11 | +// |
| 12 | +$background-nav: #192222; |
| 13 | +$background-body: #131818; |
| 14 | +$foreground: #1bb3ac; |
| 15 | +// $body-color: #ffffff; |
| 16 | +$links:#2aa198; |
| 17 | +$links-hover: #31dce6; |
| 18 | +$code-background-color: #172424; |
| 19 | +$li: #979c9c; |
| 20 | + |
| 21 | +$white: #ffffff !default; |
| 22 | +$gray-100: #f8f9fa !default; |
| 23 | +$gray-200: #e9ecef !default; |
| 24 | +$gray-300: #dee2e6 !default; |
| 25 | +$gray-400: #ced4da !default; |
| 26 | +$gray-500: #adb5bd !default; |
| 27 | +$gray-600: #868e96 !default; |
| 28 | +$gray-700: #495057 !default; |
| 29 | +$gray-800: #373a3c !default; |
| 30 | +$gray-900: #212529 !default; |
| 31 | +$black: #000000 !default; |
| 32 | + |
| 33 | +$blue: $links-hover !default; |
| 34 | +$indigo: #6610f2 !default; |
| 35 | +$purple: #613d7c !default; |
| 36 | +$pink: #e83e8c !default; |
| 37 | +$red: #ff0039 !default; |
| 38 | +$orange: #f0ad4e !default; |
| 39 | +$yellow: #ff7518 !default; |
| 40 | +$green: #3fb618 !default; |
| 41 | +$teal: #20c997 !default; |
| 42 | +$cyan: #9954bb !default; |
| 43 | + |
| 44 | +$primary: $blue !default; |
| 45 | +$secondary: $gray-800 !default; |
| 46 | +$success: $green !default; |
| 47 | +$info: $cyan !default; |
| 48 | +$warning: $yellow !default; |
| 49 | +$danger: $red !default; |
| 50 | +$light: $gray-100 !default; |
| 51 | +$dark: $gray-800 !default; |
| 52 | + |
| 53 | +$min-contrast-ratio: 2.6 !default; |
| 54 | + |
| 55 | +// Options |
| 56 | + |
| 57 | +$enable-rounded: false !default; |
| 58 | + |
| 59 | +// Body |
| 60 | + |
| 61 | +// $body-color: $gray-800 !default; |
| 62 | + |
| 63 | +// Fonts |
| 64 | + |
| 65 | +// stylelint-disable-next-line value-keyword-case |
| 66 | +$font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default; |
| 67 | +$headings-font-weight: 400 !default; |
| 68 | + |
| 69 | +// Tables |
| 70 | + |
| 71 | +$table-color: initial !default; |
| 72 | + |
| 73 | +// Navbar |
| 74 | + |
| 75 | +// $navbar-dark-hover-color: rgba($white, 1) !default; |
| 76 | +// $navbar-light-hover-color: rgba($black, .9) !default; |
| 77 | + |
| 78 | +// Alerts |
| 79 | + |
| 80 | +$alert-border-width: 0 !default; |
| 81 | + |
| 82 | +// Progress bars |
| 83 | + |
| 84 | +$progress-height: .5rem !default; |
| 85 | + |
| 86 | +$navbar-bg: $background-nav; |
| 87 | +$navbar-fg: $foreground; |
| 88 | +$footer-bg: $background-nav; |
| 89 | +$footer-fg: $foreground; |
| 90 | +$body-color: $white; |
| 91 | +$body-bg: $background-body; |
| 92 | + |
| 93 | +a, pre code { |
| 94 | + color: $links !important; |
12 | 95 | }
|
13 | 96 |
|
14 | 97 | a:hover {
|
15 |
| - color: #31dce6 !important; |
| 98 | + color: $links-hover !important; |
16 | 99 | }
|
17 | 100 |
|
18 | 101 | code, p code, ol code, li code, h1 code {
|
19 |
| - background-color: #172424 !important; |
20 |
| - color: #2aa198; |
| 102 | + background-color: $code-background-color !important; |
| 103 | + color: $links; |
21 | 104 | }
|
22 | 105 |
|
23 | 106 | .cell, .anchored code {
|
24 |
| - background-color: #172424 !important; |
25 |
| - color: #2aa198; |
| 107 | + background-color: $code-background-color !important; |
| 108 | + color: $links; |
26 | 109 | }
|
27 | 110 |
|
28 | 111 | div.sourceCode {
|
29 |
| - background-color: #172424 !important; |
| 112 | + background-color: $code-background-color !important; |
30 | 113 | }
|
31 | 114 |
|
32 | 115 | li {
|
33 |
| - color: #979c9c !important; |
| 116 | + color: $li !important; |
34 | 117 | }
|
35 | 118 |
|
36 | 119 | .menu-text:hover {
|
37 |
| - color: #31dce6 !important; |
| 120 | + color: $links-hover !important; |
38 | 121 | }
|
39 | 122 |
|
40 | 123 | p {
|
41 |
| - color: #979c9c !important; |
| 124 | + color: $li !important; |
42 | 125 | }
|
43 | 126 |
|
44 | 127 | .breadcrumb {
|
45 |
| - background-color: #131818 !important; |
| 128 | + background-color: $background-body !important; |
46 | 129 | }
|
47 | 130 |
|
48 | 131 | ::selection {
|
49 |
| - color: #31dce6; |
50 |
| - background: #192222; |
| 132 | + color: $links-hover; |
| 133 | + background: $background-nav; |
51 | 134 | }
|
0 commit comments