-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolarized-dark.css
84 lines (74 loc) · 2.47 KB
/
solarized-dark.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
:root {
/* http://www.zovirl.com/2011/07/22/solarized_cheat_sheet/ */
/* Solarized colour palette */
--base03: #002b36;
--base02: #073642;
--base01: #586e75;
--base00: #657b83;
--base0: #839496;
--base1: #93a1a1;
--base2: #eee8d5;
--base3: #fdf6e3;
--yellow: #b58900;
--orange: #cb4b16;
--red: #dc322f;
--magenta: #d33682;
--violet: #6c71c4;
--blue: #268bd2;
--cyan: #2aa198;
--green: #859900;
/* Variable replacements */
--main-surface-primary: var(--base03);
--main-surface-secondary: var(--base02);
--main-surface-tertiary: var(--base03);
--main-surface-background: var(--base02);
--message-surface: var(--base02);
--sidebar-surface-primary: var(--base02);
--sidebar-surface-secondary: var(--base03);
--text-primary: var(--base2);
--text-secondary: var(--base3);
--text-tertiary: var(--base1);
/* Full variable list */
/* --main-surface-background: rgba(33,33,33,.9);
--message-surface: rgba(50,50,50,.85);
--dot-color: var(--white);
--text-primary: var(--gray-100);
--text-secondary: var(--gray-400);
--text-tertiary: var(--gray-500);
--text-quaternary: var(--gray-600);
--text-placeholder: hsla(0,0%,100%,.8);
--text-error: #f93a37;
--border-xlight: hsla(0,0%,100%,.05);
--border-light: hsla(0,0%,100%,.1);
--border-medium: hsla(0,0%,100%,.15);
--border-heavy: hsla(0,0%,100%,.2);
--border-xheavy: hsla(0,0%,100%,.25);
--border-sharp: hsla(0,0%,100%,.05);
--main-surface-primary: var(--gray-800);
--main-surface-primary-inverse: var(--white);
--main-surface-secondary: var(--gray-750);
--main-surface-tertiary: var(--gray-700);
--sidebar-surface-primary: var(--gray-900);
--sidebar-surface-secondary: var(--gray-800);
--sidebar-surface-tertiary: var(--gray-750);
--sidebar-title-primary: hsla(0,0%,94%,.5);
--sidebar-body-primary: #ededed;
--sidebar-icon: #a4a4a4;
--link: #7ab7ff;
--link-hover: #5e83b3;
--surface-error: 287 58 55; */
}
/* Class replacements */
.bg-token-sidebar-surface-primary, .bg-token-main-surface-primary {
background-color: var(--base03) !important;
}
code, button {
background-color: var(--base02) !important;
}
div.z-50:nth-child(1) > div:nth-child(-n+4):hover {
background-color: var(--base02);
}
/* invert avatar from obnoxious pink colour */
[id^="radix"]>div:nth-child(1)>div:nth-child(1)>img:nth-child(1) {
filter: invert(1);
}