forked from SlRvb/Obsidian--ITS-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Theme - School Days.css
272 lines (238 loc) · 7.61 KB
/
Theme - School Days.css
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*----Theme: School Days----*/
.theme-dark,
.theme-light {
/*FONTS*/
--font: /*'Recursive Sans Casual Static',*/ 'Recursive Sans Linear Static Black', 'RocknRoll One Regular';
--vault-f: "CollegiateBlackFLF", "Jersey M54";
--font-monospace: "Recursive Mono Linear Static Medium";
--solve-f: 'Recursive Sans Linear Static Regular';
--hr-sym: "\e3c9";
--hr-f: var(--mdi);
--bullet: "\e80c";
--bul-f: var(--mdi);
}
.theme-dark{
--background-primary: var(--note);
--background-primary-alt: var(--dark-accent);
--background-secondary: var(--side-bar);
--background-secondary-alt: var(--outer-bar);
--background-modifier-cover: var(--deep-dark-accent);
--background-modifier-border: var(--table);
--background-modifier-form-field-highlighted: rgba(52, 123, 237, 0.22); /*Searched Highlight Color*/
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3); /*Outershadow*/
--background-modifier-cover: black; /*Obsidian Title Bar Bg*/
--text-on-accent: #dcddde; /*Program Title bar Text*/
--text-muted: var(--soft-text); /*Text darker for sidebar, toggles, inactive, tags, etc*/
--text-normal: var(--text); /*Text body of note*/
--text-accent: #808fac; /*Links*/
--text-accent-hover: var(--accent); /*Links hover*/
--text-faint: #4e5b6f; /*Link brackets color*/
--text-highlight-bg: rgba(60, 93, 168, 0.4); /*Text highlights*/
--text-highlight-bg-active: rgba(255, 128, 0, 0.4); /*??*/
--text-selection: rgba(65, 82, 119, 0.31); /*Cursor dragged highlights*/
--interactive-normal: var(--accent); /*Button Color*/
--interactive-hover: #293846; /*Button Hover*/
--interactive-accent: var(--accent); /*Workspace Note Title Underline*/
--interactive-accent-rgb: 52, 123, 237; /*Publish item select*/
--interactive-accent-hover: #2f5486; /*Menu Button Hover*/
--interactive-success: #197300; /*??*/
--scrollbar-bg: rgba(255, 255, 255, 0.05);
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
--highlight-mix-blend-mode: lighten;
/*--DEFAULT VARIABLES--*/
/*Compatibility Color Recoloring*/
--deep-dark-accent: #212731;
--dark-accent: #2b3550;
--lite-accent: #d0913d/*#6c99e0*/;
--accent: #485b76;
--accent2: var(--lite-accent);
--bg: #232a34;
--fg: white;
--side-bar: var(--note);
--outer-bar: #0e0f15;
--dark-sidebar: #10161d;
--inactive: #586477;
--file-select: var(--dark-accent);
--file: var(--soft-text);
--folder: var(--lite-accent);
--f-hover: var(--folder);
--note: #1a1e24;
--text: #dcddde;
--soft-text: #aab3ca;
--headers: #4378c1;
--code-bg: #232831;
--code-text: #e6a210;
--embed-bg: #12151a;
--tag: #273346;
--table: #2f3440;
--hr: #414b5c;
--i-at: var(--lite-accent);
--latex: #b2cfff;
--latex-s: #61afef;
--latex-c: #ebbd3e;
--header-solve: #c7c7c7;
--answer: darkseagreen;
--answer-bg: #293c33;
--graph-bg: var(--dark-sidebar);
--graph-lines: #1f3353;
--graph-node: #cfd7dd;
--graph-fill: var(--headers);
--graph-404: #727e93;
--graph-img: #4c78cc /*#ff86be*/;
--graph-tag: var(--headers);
--sphd-pre-1: var(--accent2);
--sphd-pre-2: var(--headers);
--sphd-pre-3: var(--accent);
--sphd-pre-4: var(--dark-accent);
--sphd-pre-5: var(--tag);
--sphd-pre-6: var(--deep-dark-accent);
--sphd-ed-1: var(--accent2);
--sphd-ed-2: var(--headers);
--sphd-ed-3: var(--accent);
--sphd-ed-4: var(--dark-accent);
--sphd-ed-5: var(--tag);
--sphd-ed-6: var(--deep-dark-accent);
}
.theme-light{
--background-primary: var(--note);
--background-primary-alt: var(--dark-accent);
--background-secondary: var(--side-bar);
--background-secondary-alt: var(--outer-bar);
--background-modifier-cover: var(--deep-dark-accent);
--background-modifier-border: var(--table);
--background-modifier-border: #bed5e6; /*Border outline of quotes, tables, line breaks*/
--background-modifier-error-hover: #987831;
--background-modifier-form-field-highlighted: rgba(131, 177, 240, 0.22); /*Search Bar Active Highlight*/
--text-highlight-bg: rgba(145, 176, 208, 0.4); /*Text highlights*/
--text-highlight-bg-active: rgba(255, 128, 0, 0.4); /*??*/
--text-selection: rgba(149, 192, 229, 0.37); /*Cursor dragged highlights*/
--text-normal: var(--text);
--text-muted: var(--soft-text);
--text-accent: var(--accent2-lite);
--text-on-accent: var(--note);
--text-accent-hover: var(--accent2);
--interactive-accent: var(--lite-accent);
--interactive-hover: var(--embed-bg);
--interactive-accent: var(--headers);
--interactive-accent-hover: var(--lite-accent);
/*--DEFAULT VARIABLES--*/
--deep-dark-accent: #6c8bb4;
--dark-accent: #d8ecfd;
--lite-accent: #e6af66 /*#5599d0*/;
--accent: #6d99d4;
--accent2: var(--lite-accent);
--bg: #e1e6ed;
--fg: #025d9f;
--side-bar: var(--note);
--outer-bar: #e3f0fd;
--dark-sidebar: var(--embed-bg);
--inactive: #91a3c1;
--file-select: #83a6ca;
--file: var(--soft-text);
--folder: var(--lite-accent);
--f-hover: var(--lite-accent);
--headers: #4382c1;
--note: #f8fbff;
--text: #697580;
--soft-text: #6f8fd8;
--code-text: #ebab16/*#4290ea*/;
--embed-bg: #f1f5ff;
--tag: #5685c6;
--table: #c9ced9;
--th: #b48c55;
--hr: #d6deea;
--i-at: var(--th);
--latex: #5895fa;
--latex-s: #9ed3ff;
--latex-c: #fdaf00;
--header-solve: #a87643;
--answer: #4f904f;
--answer-bg: #dbe8e2;
--graph-bg: var(--note);
--graph-lines: #ecedf8;
--graph-node: var(--headers);
--graph-fill: #2e5db2;
--graph-404: #727e93;
--graph-img: #4c78cc;
--graph-tag: #000000;
--graph-focused: var(--lite-accent);
--sphd-pre-1: var(--accent2);
--sphd-pre-2: var(--fg);
--sphd-pre-3: var(--headers);
--sphd-pre-4: var(--accent);
--sphd-pre-5: var(--th);
--sphd-pre-6: var(--graph-404);
--sphd-ed-1: var(--accent2);
--sphd-ed-2: var(--fg);
--sphd-ed-3: var(--headers);
--sphd-ed-4: var(--accent);
--sphd-ed-5: var(--th);
--sphd-ed-6: var(--graph-404);
}
/*Vault Name*/
.nav-folder.mod-root > .nav-folder-title > .nav-folder-title-content {
font-family: var(--vault-f);
color: var(--folder);
font-weight: 10 !important;
}
ul li::before { margin-left: -24px; }
:not(.illusion) h1,
:not(.illusion) h2,
:not(.illusion) h3,
:not(.illusion) h4,
:not(.illusion) h5,
:not(.illusion) h6 {
color: var(--lite-accent);
}
/*--Mathjax Edit--*/
.mjx-math{
font-style: normal;
}
.MJX-TEX {
font-size: 130%;
color: var(--latex);
}
/*Math Block Margin Reduction*/
.mjx-container[jax="CHTML"][display="true"] {
margin: 3% 0 !important;
}
/*Math Editor*/
.cm-s-obsidian span.cm-math:not(.cm-formatting-math-begin):not(.cm-formatting-math-end) {
color: var(--latex-c);
}
.cm-s-obsidian span.cm-math,
.cm-s-obsidian span.hmd-fold-math-placeholder {
color: var(--latex-s);
font-style: normal;
}
/*--Solve Page--*/
/*Header*/
.solve h1,
.solve h2,
.solve h3,
.solve h4,
.solve h5,
.solve h6 {
color: var(--header-solve);
}
.solve h3,
.solve h4,
.solve h5,
.solve h6 {
font-family: var(--solve-f) !important;
}
/*Table*/
.solve table { margin: auto auto 5% 5px; }
.solve th,
.solve td:nth-child(1){
background-color: var(--outer-bar);
border-right: transparent;
border-left: transparent;
}
.solve td mark{
color: var(--answer);
background-color: var(--answer-bg);
font-weight: 600;
padding: 2px;
}
.solve tr { width: 10% !important; }