forked from pyrochlore/obsidian-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (67 loc) · 1.52 KB
/
styles.css
File metadata and controls
80 lines (67 loc) · 1.52 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
.theme-light {
--color-title: #000000;
--color-axis: #000000;
--font-axis-label: #000000;
--color-tick-label: #000000;
--color-line: #000000;
--color-legend: #000000;
--color-dot-fill: #69b3a2;
--color-dot-stroke: none;
--color-tooltip-bg: #ffffff;
--color-tooltip-border: #000000;
--color-tooltip-label: #000000;
}
.theme-dark {
--color-title: #ffffff;
--color-axis: #ffffff;
--color-axis-label: #ffffff;
--color-tick-label: #ffffff;
--color-line: #ffffff;
--color-legend: #ffffff;
--color-dot-fill: #69b3a2;
--color-dot-stroke: none;
--color-tooltip-bg: #ffffff;
--color-tooltip-border: #000000;
--color-tooltip-label: #000000;
}
.tracker-title {
fill: var(--color-title);
text-anchor: middle;
font-size: 18px;
}
.tracker-axis {
fill: none;
stroke: var(--color-axis);
stroke-width: 1px;
}
.tracker-axis-label {
fill: var(--color-axis-label);
text-anchor: middle;
font-size: 14px;
stroke: none;
}
.tracker-tick-label {
fill: var(--color-tick-label);
stroke: none;
font-size: 12px;
}
.tracker-line {
fill: none;
stroke: var(--color-line);
stroke-width: 1.5px;
stroke-linecap: round;
stroke-linejoin: round;
}
.tracker-dot {
fill: var(--color-dot-fill);
}
.tracker-tooltip {
fill: var(--color-tooltip-bg);
stroke: var(--color-tooltip-border);
stroke-width: 1px;
}
.tracker-tooltip-label {
fill: var(--color-tooltip-label);
stroke: none;
font-size: 12px;
}