-
-
Notifications
You must be signed in to change notification settings - Fork 519
Expand file tree
/
Copy pathvariables.css
More file actions
126 lines (119 loc) Β· 3.62 KB
/
Copy pathvariables.css
File metadata and controls
126 lines (119 loc) Β· 3.62 KB
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
:root {
--vh: 100vh;
--banner-height: 2.5rem;
--header-height: 3.5rem;
--header-mobile-breakpoint: 50rem;
--header-and-banner-height: calc(var(--header-height) + var(--banner-height));
--content-width: 50rem;
--sidebar-break: 900px;
--color-page-bg: white;
--color-text: #444;
--color-heading: black;
--color-brand: #673ab8;
--color-brand-triplet: 103, 58, 184;
--color-brand-light: #8f61e1;
--color-link: #673ab8;
--color-link-hover: #ff89ff;
--color-btn: #673ab8;
--color-btn-secondary: #673ab8;
--color-btn-background: #eee;
--color-hr: #f0f0f0;
--color-quote-bg: #ebf6ff;
--color-quote-border: #5aa8ff;
--color-quote-text: #444;
--color-warn-bg: #ffee5b;
--color-table-border: #ccc;
--color-table-even-bg: white;
--color-table-odd-bg: #f8f8f8;
--color-repl-bg: #666;
--color-repl-hover: #999;
--color-next-link: #aaa;
--color-sidebar-divider: #eee;
--color-sidebar-bg: #fafafa;
--color-sidebar-bg-active: #f3f3f3;
--color-sidebar-link-active: #673ab8;
--color-sidebar-link: #555;
--color-footer-lang-divider: #aaa;
--color-footer-lang: #673ab8;
--color-footer-link: #673ab8;
--color-footer-text: #555;
--color-footer-bg: #f2f2f2;
--color-footer-border: #ddd;
--color-error-bg: #ffeddb;
--color-error-heading: #f43678;
/* Code snippets */
--color-code-inline-color: black;
--color-code-inline-bg: #e4e4e4;
--color-code-inline-border: #eaeaea;
--color-code-bg: #101725;
--color-code-text: #ddd;
--color-code-string: #c6f4a7;
--color-code-symbol: #f8c555;
--color-code-function: #ffcb6b;
--color-code-function-name: #6196cc;
--color-code-punctuation: #ccc;
--color-code-interpolation-punctuation: #ec6368;
--color-code-tag: #ff696d;
--color-code-keyword: #c792ea;
--color-code-operator: #67cdcc;
--color-code-comment: #999;
--color-diff-inserted: #44c248;
/* DocSearch customizations */
--docsearch-container-background: #444d;
--docsearch-primary-color: #673ab8;
--docsearch-modal-background: white;
--docsearch-footer-background: white;
--docsearch-highlight-color: #673ab8;
--docsearch-muted-color: #666;
--docsearch-hit-color: #444;
--docsearch-hit-background: #e4e4e4;
@media (prefers-color-scheme: dark) {
--color-page-bg: #242424;
--color-text: #cccccc;
--color-heading: white;
--color-link: #ae80ff;
--color-btn: #673ab8;
--color-btn-secondary: white;
--color-btn-background: #eee;
--color-hr: #444;
--color-quote-bg: #152038;
--color-quote-border: #1069cc;
--color-quote-text: #c5c5c5;
--color-warn-bg: #f2d900;
--color-table-border: #3c3c3c;
--color-table-even-bg: #1c2027;
--color-table-even-bg: #171a20;
--color-table-odd-bg: #1c2027;
--color-repl-bg: #414141;
--color-repl-hover: #555;
--color-next-link: #666;
--color-sidebar-heading: white;
--color-sidebar-divider: #4f4f4f;
--color-sidebar-bg: #1a1a1a;
--color-sidebar-bg-active: #242424;
--color-sidebar-link-active: #ae80ff;
--color-sidebar-link: #b0b0b0;
--color-footer-lang-divider: #444;
--color-footer-lang: #ae80ff;
--color-footer-link: #ae80ff;
--color-footer-text: #999;
--color-footer-bg: #1b1b1b;
--color-footer-border: #1b1b1b;
--color-error-bg: #230c07;
--color-error-heading: #f43678;
/* Code snippets */
--color-code-inline-color: white;
--color-code-inline-bg: #404040;
--color-code-inline-border: #5e5e5e;
--color-code-bg: #1c2027;
/* DocSearch customizations */
--docsearch-modal-background: #333;
--docsearch-footer-background: #333;
--docsearch-text-color: #ccc;
--docsearch-searchbox-focus-background: #2b2a33;
--docsearch-highlight-color: #ae80ff;
--docsearch-muted-color: #ccc;
--docsearch-hit-color: #ddd;
--docsearch-hit-background: #3c4047;
}
}