-
Notifications
You must be signed in to change notification settings - Fork 77
/
visualization-colors.css
88 lines (71 loc) · 1.15 KB
/
visualization-colors.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* Color scheme from http://mkweb.bcgsc.ca/biovis2012/
* for color blindness a11y.
*/
.visualizationlegend li {
padding: 0.3em 0.5em;
}
.visualizationlegend {
padding-bottom: 1em;
padding-right: 4.5em;
}
.unmapped {
background-color: #920000;
color: white;
}
.astral {
background-color: #6db6fe;
color: black;
}
.mid {
background-color: #ffff6d;
color: black;
}
.upper, .byte {
background-color: #d4d5db;
color: black;
}
.pua {
background-color: #db6d00;
color: black;
}
.mid.contiguous {
background-color: #009292;
color: black;
}
.upper.contiguous {
background-color: #24fe23;
color: black;
}
.pua.contiguous {
background-color: #924900;
color: white;
}
.astral.contiguous {
background-color: #480091;
color: white;
}
.duplicate {
border-style: solid ;
border-color: #920000;
color: black;
}
.compatibility {
border-style: dashed;
border-color: black;
}
.duplicate.compatibility {
border-style: dashed;
border-color: #920000;
}
.ext {
border-style: dotted;
border-color: black;
}
.ext.compatibility {
border-style: dotted;
border-color: #920000;
}
.surrogate {
background-color: #b4b4b6;
}