forked from cimplex-project/visualization-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_dark.css
48 lines (44 loc) · 1.15 KB
/
style_dark.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
/**
* This file contains CSS style code for a dark theme. It only overwrites colors
* defined in style.css and should not affect any other properties.
*/
/********** COLOR VARIABLES **********/
* {
--pageBgColor: #333;
--pageColor: #eee;
--scrollbarBgColor: #aaa;
--scrollbarThumbColor: #666;
--toolbarSeparatorColor: #222;
--viewBgColor: #222;
--viewColor: #eee;
--viewBorderColor: #333;
--viewHeaderColor: #ddd;
--viewButtonColor: #aaa;
--viewSettingsBgColor: rgba(16, 16, 16, 0.8);
--tooltipColor: #000;
--tooltipBgColor: rgba(255, 255, 255, 0.85);
--draggingRectColor: #fff;
--textShadow: -1px -1px 1px #000,
-1px 1px 1px #000,
1px -1px 1px #000,
-1px -1px 1px #000;
--disabledColor: #333;
--disabledBorderColor: #333;
--disabledBgColor: #000;
}
/********** TIMELINE **********/
.timeline {
--timelineAxisColor: #eee;
}
/********** MAP **********/
.map {
--mapTextColor: #eee;
--mapButtonBgColor: #000;
--mapButtonBorderColor: #aaa;
}
/********** FILTER INFO **********/
.filterInfo {
--svgBgColor: steelblue;
--svgBgHover: #fff;
--svgTextColor: #fff;
}