-
Notifications
You must be signed in to change notification settings - Fork 56
/
theme-dark.scss
140 lines (106 loc) · 2.79 KB
/
theme-dark.scss
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
130
131
132
133
134
135
136
137
/*-- scss:defaults --*/
// Base document colors
$font-size-root: 1rem;
$bs-body-font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
/*-- scss:rules --*/
// Data table
.dataTables_wrapper {
position: relative;
clear: both;
color: #c3c3c3;
}
// Color for notes
*[style*="color: black"] {
color: #6d96c0 !important;
}
// Color for tips
*[style*="color: darkgreen"] {
color: #38c538 !important;
}
.flextable-shadow-host {
background-color: white !important;
}
/*
a {
color: #59bea0 !important;
text-decoration: underline;
-webkit-text-decoration: underline;
-moz-text-decoration: underline;
-ms-text-decoration: underline;
-o-text-decoration: underline;
}
.sidebar nav[role=doc-toc] ul>li>a.active, .sidebar nav[role=doc-toc] ul>li>ul>li>a.active {
border-left: 1px solid white;
color: white !important;
}
.nav-link {
color: #59bea0 !important;
}
.chapter-title {
color: white;
}
.menu-text {
color: white !important;
}
.sidebar-item-text.sidebar-link.text-start {
color: white !important;
}
.sidebar-item-container {
color: white !important;
}
.sidebar-item-text.sidebar-link.active {
color: white !important;
}
.sidebar-item.chapter-number {
color: #59bea0 !important;
}
.sidebar nav[role=doc-toc] ul>li>a:hover, .sidebar nav[role=doc-toc] ul>li>ul>li>a:hover {
color: white !important;
}
.chapter-number {
color: #bfbfbf !important;
}
div.sidebar-item-container .active, div.sidebar-item-container .show>.nav-link, div.sidebar-item-container .sidebar-link>code {
color: #f6f6f6 !important;
}
.quarto-title-breadcrumbs .breadcrumb li:last-of-type a {
color: #f6f6f6 !important;
}
/*
.btn-primary {
--bs-btn-color: #fff;
--bs-btn-bg: #59bea0;
--bs-btn-border-color: #59bea0
--bs-btn-hover-color: #fff;
--bs-btn-hover-bg: #59bea0;
--bs-btn-hover-border-color: #59bea0;
--bs-btn-focus-shadow-rgb: 71, 147, 231;
--bs-btn-active-color: #fff;
--bs-btn-active-bg: #59bea0;
--bs-btn-active-border-color: #59bea0;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-color: #fff;
--bs-btn-disabled-bg: #59bea0;
--bs-btn-disabled-border-color: #59bea0;
}
// Code blocks
b, strong {
font-weight: bolder;
color: #59bea0;
}
.alert-info {
--bs-alert-color: #3d224b !important;
--bs-alert-bg: #ebddf1 !important;
--bs-alert-border-color: #d6bbe4 !important;
--bs-alert-link-color: var(--bs-info-text-emphasis);
}
.alert-info, .alert-info>th, .alert-info>td {
background-color: #ebddf1 !important;
}
.alert {
color: #3d224b !important;
}
.alert-link {
font-weight: 700;
color: #3d224b !important;
}*/