-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
163 lines (146 loc) · 5.61 KB
/
index.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
/* UIState.js: mainLumLight */
--main-lum-light: 84.8%;
/* UIState.js: mainLumDark */
--main-lum-dark: 28.3%;
}
body {
margin: 0;
display: block;
place-items: center;
}
#root {
min-height: 100vh;
min-width: 100vw;
margin: 0 auto;
padding: 0;
text-align: center;
}
.main {
min-height: max-content;
min-width: max-content;
background: var(--bg-color);
--paddingLeft: calc(max(0px, var(--iUnit) - var(--vUnit)) * 0.5);
--paddingRight: calc(max(0px, var(--iUnit) - var(--vUnit)) * 0.5);
--paddingTop: calc(max(0px, var(--iUnit) - var(--vUnit)) * 0.5);
--paddingBottom: calc(max(0px, var(--iUnit) - var(--vUnit)) * 0.5);
--elemHeight: calc(max(var(--iUnit), var(--vUnit)));
--elemWidth: calc(max(var(--iUnit), var(--vUnit)));
}
.elem {
color: var(--text-inactive-color);
}
.theme-dark {
--main-hue: 267.5;
--text-lum: 95%;
--text-hue: 220.5;
/* less red than the main */
--accent-hue: 45.2;
/* contrast with the main */
--bg-color: oklch(var(--main-lum-dark) 0.010 var(--main-hue));
/* mute */
--text-active-color: oklch(var(--text-lum) 0.015 var(--text-hue));
--text-inactive-color: oklch(var(--text-lum) 0.015 var(--text-hue));
/* contrast both bg and text, helped by elem-border-color */
--elem-bg-color: oklch(calc(var(--main-lum-dark) + 9%) 0.015 var(--main-hue));
--elem-bg-inactive-color: oklch(calc(var(--main-lum-dark) + 1%) 0.015 var(--main-hue));
/* use the contrasting accent */
--elem-highlight-active-color: oklch(calc(var(--main-lum-dark) + 36%) 0.182 var(--accent-hue));
--elem-highlight-inactive-color: oklch(calc(var(--main-lum-dark) + 18%) 0.06 var(--accent-hue));
/* just enough to not notice */
--elem-border-color: oklch(calc(var(--main-lum-dark) - 3%) 0.015 var(--main-hue));
--separator-color: oklch(calc(var(--main-lum-dark) + 4%) 0.015 var(--main-hue));
}
.theme-light {
--main-hue: 310.6;
--text-lum: 5%;
--text-hue: 220.5;
--accent-hue: 267.9;
/* contrast with the main, enough chroma when dark */
--bg-color: oklch(var(--main-lum-light) 0.009 var(--main-hue));
/* mute */
--text-active-color: oklch(var(--text-lum) 0.015 var(--text-hue));
--text-inactive-color: oklch(var(--text-lum) 0.015 var(--text-hue));
/* contrast both bg and text, helped by elem-border-color */
--elem-bg-color: oklch(calc(var(--main-lum-light) + 9%) 0.009 var(--main-hue));
--elem-bg-inactive-color: oklch(calc(var(--main-lum-light) + 1%) 0.010 var(--main-hue));
/* use the contrasting accent */
--elem-highlight-active-color: oklch(calc(var(--main-lum-light) - 36%) 0.20 var(--accent-hue));
--elem-highlight-inactive-color: oklch(calc(var(--main-lum-light) - 18%) 0.06 var(--accent-hue));
/* just enough to not notice */
--elem-border-color: oklch(calc(var(--main-lum-light) - 8%) 0.009 var(--main-hue));
--separator-color: oklch(calc(var(--main-lum-light) - 4%) 0.015 var(--main-hue));
}
@media (prefers-color-scheme: dark) {
.theme-system {
--main-hue: 267.5;
--text-lum: 95%;
--text-hue: 220.5;
/* less red than the main */
--accent-hue: 45.2;
/* contrast with the main */
--bg-color: oklch(var(--main-lum-dark) 0.010 var(--main-hue));
/* mute */
--text-active-color: oklch(var(--text-lum) 0.015 var(--text-hue));
--text-inactive-color: oklch(var(--text-lum) 0.015 var(--text-hue));
/* contrast both bg and text, helped by elem-border-color */
--elem-bg-color: oklch(calc(var(--main-lum-dark) + 9%) 0.015 var(--main-hue));
--elem-bg-inactive-color: oklch(calc(var(--main-lum-dark) + 1%) 0.015 var(--main-hue));
/* use the contrasting accent */
--elem-highlight-active-color: oklch(calc(var(--main-lum-dark) + 36%) 0.182 var(--accent-hue));
--elem-highlight-inactive-color: oklch(calc(var(--main-lum-dark) + 18%) 0.06 var(--accent-hue));
/* just enough to not notice */
--elem-border-color: oklch(calc(var(--main-lum-dark) - 3%) 0.015 var(--main-hue));
--separator-color: oklch(calc(var(--main-lum-dark) + 4%) 0.015 var(--main-hue));
}
}
@media (prefers-color-scheme: light) {
.theme-system {
--main-hue: 310.6;
--text-lum: 5%;
--text-hue: 220.5;
--accent-hue: 267.9;
/* contrast with the main, enough chroma when dark */
--bg-color: oklch(var(--main-lum-light) 0.009 var(--main-hue));
/* mute */
--text-active-color: oklch(var(--text-lum) 0.015 var(--text-hue));
--text-inactive-color: oklch(var(--text-lum) 0.015 var(--text-hue));
/* contrast both bg and text, helped by elem-border-color */
--elem-bg-color: oklch(calc(var(--main-lum-light) + 9%) 0.009 var(--main-hue));
--elem-bg-inactive-color: oklch(calc(var(--main-lum-light) + 1%) 0.010 var(--main-hue));
/* use the contrasting accent */
--elem-highlight-active-color: oklch(calc(var(--main-lum-light) - 36%) 0.20 var(--accent-hue));
--elem-highlight-inactive-color: oklch(calc(var(--main-lum-light) - 18%) 0.06 var(--accent-hue));
/* just enough to not notice */
--elem-border-color: oklch(calc(var(--main-lum-light) - 8%) 0.009 var(--main-hue));
--separator-color: oklch(calc(var(--main-lum-light) - 4%) 0.015 var(--main-hue));
}
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
h1 {
font-size: 3.2rem;
line-height: 1.1;
}
.spacer {
padding: 0.2rem;
}
.elem {
/* min-width: 3rem; */
/* min-height: 3rem; */
}