-
Notifications
You must be signed in to change notification settings - Fork 2
/
solarized-dark.css
74 lines (60 loc) · 2.76 KB
/
solarized-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
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
/* The container background... I picked this instead of the concord object because then there was extra white stuff around the latter */
.divOutlinerContainer
{ background-color: #002b36; }
/* Text color in text mode */
.concord .concord-node .concord-wrapper .concord-text
{ color: #839496; }
/* Text color when selected */
.concord .concord-node.selected > .concord-wrapper .concord-text
{ color: #839496; }
/* Selection Background Color */
.concord .concord-node.selected > .concord-wrapper
{ background-color: #073642; }
/* Wedge with children when not selected */
.concord .concord-node.collapsed > .concord-wrapper.type-icon .node-icon
{ color: #839496; }
/* Wedge with children when selected */
.concord .concord-node.selected.collapsed > .concord-wrapper.type-icon .node-icon
{ color: #839496; }
/* Wedge without children when selected */
.concord .concord-node.selected > .concord-wrapper.type-icon .node-icon
{ color: #586e75; }
/* Wedge without children when not selected */
.concord .concord-node > .concord-wrapper.type-icon .node-icon
{ color: #586e75; }
/* Styling the expanded wedges */
.concord-node:not(.collapsed) > .concord-wrapper.type-icon > .node-icon {
transform: rotate(90deg);
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
}
/* Custom icon with children when not selected */
.concord .concord-node > .concord-wrapper.type-icon .node-icon
{ color: #839496; }
/* Custom icon with children when selected */
.concord .concord-node.selected > .concord-wrapper.type-icon .node-icon
{ color: #839496; }
/* Link text (level 4 color and bold)*/
.concord-text a, .concord-text a:visited
{ color: #b58900; font-weight: bold; }
/* Selected link text */
.concord-node.selected > .concord-wrapper .concord-text a, .concord-node.selected > .concord-wrapper .concord-text a:visited
{ color: #839496; font-weight: bold; }
/* ============================================================ */
/* Colorized */
.concord-level-1-text { color: #cb4b16 !important; }
.concord-level-2-text { color: #859900 !important; }
.concord-level-3-text { color: #268bd2 !important; }
.concord-level-4-text { color: #b58900 !important; }
.concord-level-5-text { color: #2aa198 !important; }
.concord-level-6-text { color: #859900 !important; }
.concord-level-7-text { color: #dc322f !important; }
.concord-level-8-text { color: #268bd2 !important; }
.concord-level-9-text { color: #dc322f !important; }
/* This section repeats from 2-9 over and over again... truncated at 15 here */
.concord-level-10-text { color: #859900 !important; }
.concord-level-11-text { color: #268bd2 !important; }
.concord-level-12-text { color: #b58900 !important; }
.concord-level-13-text { color: #2aa198 !important; }
.concord-level-14-text { color: #859900 !important; }
.concord-level-15-text { color: #dc322f !important; }