-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
executable file
·59 lines (57 loc) · 2.6 KB
/
theme.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
:root {
--background-1: #0f0f0f;
--background-2: #1a1a1a;
--foreground-1: #cccccc;
--foreground-2: #cccccc;
--foreground-3: #cccccc;
--highlight-color: #2c313a;
--neutral-color: #72767e;
--danger-color: #d82115;
--success-color: #007585;
--warning-color: #ea930a;
--border-color: #181a1b;
--navigation-item-selected-background-color: #bbbec43d;
--sn-stylekit-passive-color-3: #515357;
--sn-stylekit-passive-color-4: #1a1a1a;
--sn-stylekit-passive-color-5: #1a1a1a;
--sn-stylekit-info-color: var(--highlight-color);
--sn-stylekit-info-contrast-color: var(--foreground-1);
--sn-stylekit-neutral-color: var(--neutral-color);
--sn-stylekit-neutral-contrast-color: var(--background-2);
--sn-stylekit-success-color: var(--success-color);
--sn-stylekit-success-contrast-color: var(--background-2);
--sn-stylekit-warning-color: var(--warning-color);
--sn-stylekit-warning-contrast-color: var(--background-2);
--sn-stylekit-danger-color: var(--danger-color);
--sn-stylekit-danger-contrast-color: var(--background-2);
--sn-stylekit-shadow-color: var(--background-2);
--sn-stylekit-background-color: var(--background-1);
--sn-stylekit-foreground-color: var(--foreground-1);
--sn-stylekit-border-color: var(--border-color);
--sn-stylekit-paragraph-text-color: var(--foreground-1);
--sn-stylekit-contrast-background-color: var(--background-2);
--sn-stylekit-contrast-foreground-color: var(--foreground-1);
--sn-stylekit-contrast-border-color: var(--border-color);
--sn-stylekit-secondary-background-color: var(--background-2);
--sn-stylekit-secondary-foreground-color: var(--foreground-2);
--sn-stylekit-secondary-border-color: var(--border-color);
--sn-stylekit-secondary-contrast-background-color: var(--background-1);
--sn-stylekit-secondary-contrast-foreground-color: var(--foreground-1);
--sn-stylekit-secondary-contrast-border-color: var(--border-color);
--sn-stylekit-editor-background-color: var(--background-1);
--sn-stylekit-editor-foreground-color: var(--foreground-1);
--sn-stylekit-input-placeholder-color: var(--foreground-2);
--sn-stylekit-input-border-color: var(--border-color);
--sn-stylekit-scrollbar-track-border-color: var(--border-color);
--sn-stylekit-scrollbar-thumb-color: var(--sn-stylekit-info-color);
--sn-desktop-titlebar-bg-color: var(--background-1);
--sn-desktop-titlebar-border-color: var(--border-color);
--sn-desktop-titlebar-ui-color: var(--foreground-1);
--sn-desktop-titlebar-ui-hover-color: var(--highlight-color);
}
textarea, .blocks-editor {
caret-color: #086dd6;
}
#note-text-editor, #super-editor-content {
line-height: 2;
}