-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (52 loc) · 1.53 KB
/
style.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
:root {
--primaryBackground: #eeeeee;
--primaryForeground: black;
--primaryBorder: rgba(0, 0, 0, 0.2);
--secondaryBackground: #cccccc;
--secondaryForeground: #666666;
--secondaryBorder: rgba(0, 0, 0, 0.2);
--selectedBackground: #4444ff;
--selectedForeground: white;
--selectedBorder: rgba(255, 255, 255, 0.2);
--animatedBackground: #ff0000;
--animatedForeground: white;
--animatedProgressForeground: #ff6666;
--animatedProgressBackground: #bb0000;
--computedBackground: #00ff00;
--computedForeground: black;
--linearKeyframe: linear-gradient(90deg, #ffaa00 0%, #ffaa00 50%, #aa7700 50%, #aa7700 100%);
--bezierKeyframe: linear-gradient(90deg, #009900 0%, #009900 50%, #006600 50%, #006600 100%);
--keyframePoint: #ffbbbb;
--targetStart: rgba(68, 68, 255, 0.1);
--targetEnd: rgba(68, 68, 255, 0.2);
}
@font-face {
font-family: "Overpass";
font-weight: 400;
font-display: swap;
src: url("media/overpass.woff2") format("woff2");
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Overpass", system-ui, sans-serif;
background-color: var(--primaryBackground);
color: var(--primaryForeground);
overflow: hidden;
}
#root {
display: flex;
height: 100vh;
flex-direction: column;
}
@media (prefers-color-scheme: dark) {
:root {
--primaryBackground: #111111;
--primaryForeground: white;
--secondaryBackground: #333333;
--secondaryForeground: #999999;
--keyframePoint: #440000;
}
}