Skip to content

Commit 0435869

Browse files
committed
Updated Code
1 parent 591c2e3 commit 0435869

File tree

3 files changed

+104
-21
lines changed

3 files changed

+104
-21
lines changed

Diff for: .DS_Store

8 KB
Binary file not shown.

Diff for: _quarto.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ format:
147147
html:
148148
theme:
149149
light: cosmo
150-
dark: [solar, theming/theme-dark.scss]
150+
dark: [cosmo, theming/theme-dark.scss]
151151
css: theming/styles.css
152152
toc: true
153153
smooth-scroll: true

Diff for: theming/theme-dark.scss

+103-20
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,134 @@
11
/*-- scss:defaults --*/
2+
// Cosmo 5.3.3
3+
// Bootswatch
24

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;
96

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;
1295
}
1396

1497
a:hover {
15-
color: #31dce6 !important;
98+
color: $links-hover !important;
1699
}
17100

18101
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;
21104
}
22105

23106
.cell, .anchored code {
24-
background-color: #172424 !important;
25-
color: #2aa198;
107+
background-color: $code-background-color !important;
108+
color: $links;
26109
}
27110

28111
div.sourceCode {
29-
background-color: #172424 !important;
112+
background-color: $code-background-color !important;
30113
}
31114

32115
li {
33-
color: #979c9c !important;
116+
color: $li !important;
34117
}
35118

36119
.menu-text:hover {
37-
color: #31dce6 !important;
120+
color: $links-hover !important;
38121
}
39122

40123
p {
41-
color: #979c9c !important;
124+
color: $li !important;
42125
}
43126

44127
.breadcrumb {
45-
background-color: #131818 !important;
128+
background-color: $background-body !important;
46129
}
47130

48131
::selection {
49-
color: #31dce6;
50-
background: #192222;
132+
color: $links-hover;
133+
background: $background-nav;
51134
}

0 commit comments

Comments
 (0)