-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
71 lines (61 loc) · 1.18 KB
/
global.css
File metadata and controls
71 lines (61 loc) · 1.18 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
:root {
--bg-primary: #1b1f22;
--bg-secondary: #2c3038;
--fg-normal: #ffffff;
--fg-muted: #cfcfcf;
--fg-silent: #7d8288;
--accent-even-lighter: #748ffc;
--accent-lighter: #4c6ef5;
--accent: #3b5bdb;
--accent-darker: #364fc7;
--accent-modifier-hover: #486bf7;
--accent-modifier-fg-hover: #a5b5f8;
--danger-darker: #e03131;
--danger-lighter: #ff6b6b;
}
body {
margin: 0;
background: var(--bg-primary);
color: var(--fg-normal);
font-family: 'Inter', sans-serif;
}
#__next {
box-sizing: border-box;
height: 100vh;
}
* {
outline: none;
box-sizing: border-box;
}
a {
text-decoration: none;
}
.rv-xy-plot {
position: relative;
}
.rv-xy-plot__axis__tick__text {
fill: var(--fg-muted);
}
.rv-discrete-color-legend {
color: var(--fg-normal);
position: absolute;
font-size: 14px;
pointer-events: none;
top: 0;
right: 0;
z-index: 88;
border-radius: 6px;
background: var(--bg-secondary);
padding: 8px 10px;
width: 180px;
}
.rv-discrete-color-legend svg {
height: 10px;
margin-right: 4px;
}
.rv-discrete-color-legend svg path {
stroke-width: 20px;
}
.rv-xy-plot__series.rv-xy-plot__series--line {
stroke: var(--accent) !important;
}