-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.css
78 lines (76 loc) · 3.42 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
:root {
--background: #282a36;
--current-line: #44475a;
--foreground: #f8f8f2;
--comment: #6272a4;
--red: #ff5555;
--orange: #ffb86c;
--green: #50fa7b;
--pink: #ff79c6;
--purple: #bd93f9;
--cyan: #8be9fd;
--yellow: #f1fa8c;
--background-lighter: #424450;
--background-light: #343746;
--background-dark: #21222C;
--background-darker: #191A21;
--foreground-dark: #adada9;
--foreground-darker: #949491;
--border: var(--background-lighter);
--sn-stylekit-accessory-tint-color-1: var(--purple);
--sn-stylekit-accessory-tint-color-2: var(--pink);
--sn-stylekit-accessory-tint-color-3: var(--orange);
--sn-stylekit-accessory-tint-color-4: var(--cyan);
--sn-stylekit-accessory-tint-color-5: var(--green);
--sn-stylekit-accessory-tint-color-6: var(--yellow);
--highlight-color: var(--comment);
--sn-component-foreground-color: var(--foreground);
--sn-component-background-color: var(--background);
--sn-component-foreground-highlight-color: var(--highlight-color);
--sn-component-outer-border-color: var(--comment);
--sn-component-inner-border-color: var(--foreground);
--sn-stylekit-shadow-color: var(--comment);
--sn-stylekit-info-color: var(--pink);
--sn-stylekit-info-contrast-color: var(--background);
--sn-stylekit-neutral-color: var(--purple);
--sn-stylekit-neutral-contrast-color: var(--foreground);
--sn-stylekit-success-color: var(--green);
--sn-stylekit-success-contrast-color: var(--background);
--sn-stylekit-warning-color: var(--orange);
--sn-stylekit-warning-contrast-color: var(--background);
--sn-stylekit-danger-color: var(--red);
--sn-stylekit-danger-contrast-color: var(--foreground);
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color);
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color);
--sn-stylekit-background-color: var(--background);
--sn-stylekit-foreground-color: var(--foreground);
--sn-stylekit-border-color: var(--border);
--sn-stylekit-contrast-background-color: var(--background-darker);
--sn-stylekit-contrast-foreground-color: var(--foreground);
--sn-stylekit-contrast-border-color: var(--border);
--sn-stylekit-secondary-background-color: var(--background-light);
--sn-stylekit-secondary-foreground-color: var(--foreground);
--sn-stylekit-secondary-border-color: var(--border);
--sn-stylekit-secondary-contrast-background-color: var(--current-line);
--sn-stylekit-secondary-contrast-foreground-color: var(--foreground);
--sn-stylekit-secondary-contrast-border-color: var(--foreground);
--sn-stylekit-paragraph-text-color: var(--foreground);
--sn-desktop-titlebar-bg-color: var(--background);
--sn-desktop-titlebar-border-color: var(--comment);
--sn-desktop-titlebar-ui-color: var(--foreground);
--sn-desktop-titlebar-ui-hover-color: var(--highlight-color);
--sn-stylekit-scrollbar-track-border-color: var(--comment);
--sn-stylekit-scrollbar-thumb-color: var(--sn-stylekit-info-color);
--sn-stylekit-passive-color-0: var(--foreground-dark);
--sn-stylekit-passive-color-1: var(--foreground-darker);
--sn-stylekit-passive-color-3: var(--border);
--sn-stylekit-passive-color-4: var(--background-dark);
--sn-stylekit-passive-color-5: var(--background-darker);
--navigation-item-selected-background-color: var(--current-line);
}
.sn-component .sk-panel .sk-panel-footer .left {
color: var(--foreground);
}
#plus-editor label kbd {
background-color: var(--sn-stylekit-background-color);
}