-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookup_dark.scss
More file actions
131 lines (105 loc) · 3.07 KB
/
Copy pathbookup_dark.scss
File metadata and controls
131 lines (105 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*-- scss:defaults --*/
$font-family-sans-serif: "Roboto", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
$font-family-monospace: "Fira Mono", "Menlo", "Andale Mono", monospace;
$font-size-root: 16px;
$h1-font-size: 2.2em;
$h2-font-size: 1.75em;
$h3-font-size: 1.5em;
$h4-font-size: 1.25em;
$body-bg: #1c1f2b;
$body-color: #cad2dd;
$footer-bg: #1c1f2b;
$footer-fg: #cad2dd;
$toc-color: #008080;
/*-- scss:rules --*/
:root {
--bs-body-font-weight: 300;
--link-color: #c1ff42;
--toc-active-color: #c1ff42;
--toc-border-color: #555;
--sidebar-fg: #ccd1e2;
--sidebar-bg-docked: #2d3143;
--sidebar-border: transparent;
--sidebar-active-link-color: #c1ff42;
--sidebar-part-color: #ccd1e2;
--sidebar-input-border: #5d6173;
--figure-img-border: 1px solid #5d6173;
--figure-img-shadow: none;
--code-block-color: #9dbed8;
--code-block-bg: #2d3143;
--code-color: #9dbed8;
--code-bg: #2d3143;
--hl-code-comments: #8e8d8c;
--header-footer-border: #2d3143;
--table-tr-border: #50616e;
--table-out-borders: #AAA;
--table-tr-hover: #242838;
--reader-toggle-bg: #2d3143;
--reader-toggle-border: #5d6173;
--callout-color: #000;
--callout-warning-bg: #ffe99f;
--callout-warning-title: #af8300;
--callout-note-bg: #b4d3ff;
--callout-note-title: #2f65b8;
--callout-important-bg: #f8bcc0;
--callout-important-title: #900;
--callout-caution-bg: #ffdabd;
--callout-caution-title: #be7200;
--callout-tip-bg: #bafcde;
--callout-tip-title: #050;
--listing-card-border: #5d6173;
--listing-card-shadow: rgba(255, 255, 255, 0.04);
--listing-card-shadow-hover: rgba(255, 255, 255, 0.08);
/* Font styles from Light Theme */
--toc-font-family: "Roboto", sans-serif;
}
.table,
.dataTable {
--bs-table-accent-bg: #35394b;
--bs-table-striped-bg: #2d3143;
}
body {
color-scheme: dark;
}
/* Sidebar */
#quarto-sidebar,
#quarto-content .sidebar-navigation {
.sidebar-item-container {
a {
color: var(--sidebar-fg);
transition: color 0.3s;
}
a.active,
a:hover {
font-family: var(--toc-font-family);
color: var(--sidebar-active-color);
border-left: 3px solid var(--sidebar-active-color);
padding-left: 15px;
}
}
} .sidebar-logo {
max-height: 10px !important; /* Adjust this value to your preference */
width: auto !important;
}
/* Page Headings in TOC on Right Side */
#quarto-margin-sidebar,
#quarto-content .margin-sidebar,
#quarto-sidebar #TOC {
ul {
li a {
font-family: var(--toc-font-family);
color: var(--sidebar-fg);
transition: color 0.3s;
}
li a.active,
li a:hover {
color: var(--sidebar-active-color);
border-left: 3px solid var(--sidebar-active-color);
padding-left: 15px;
}
}
}
/* Style the section headers bold */
#quarto-sidebar .sidebar-item.sidebar-item-section > .sidebar-item-container > a {
font-weight: bold;
}