blob: 372cd46cd6603cb72fc17f8bade293c9717b0cac (
plain)
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
|
import css from './css';
css`
body {
--theme-backdrop: #1e1e1e;
--theme-fg: #eeeeee;
--theme-note-bg: #eeeeee;
--theme-note-fg: #363636;
--theme-header-fg: #121212;
}
body.darktheme {
--theme-backdrop: #1e1e1e;
--theme-note-bg: #363636;
--theme-note-fg: #eeeeee;
--theme-header-fg: #121212;
}
body {
color: var(--theme-fg);
background: var(--theme-backdrop);
font-family: sans-serif;
font-size: 11px;
}
`;
|