blob: 4c31e0f008416d02bd39c405be7015d388ddbd88 (
plain)
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
|
/* inkscape-compatibility, explicitly apply font settings to .label */
svg, .label {
font-family: "IBM Plex Sans Arabic";
font-size: 90px;
font-weight: 400;
}
.unused {
opacity: 0.6;
}
.label .layer-1 {
}
.modifier .label .layer-1 {
font-size: 80%;
}
.label .layer-2, .label .layer-3, .label .layer-4 {
font-size: 80%;
font-weight: 100;
}
.label .controlchar {
font-size: 40%;
font-family: sans-serif;
}
.cap rect {
fill: #eee8d5;
}
.highlight circle {
fill: #dc322f; /* red */
filter: blur(30px);
}
.cap-shadow rect.finger-little {
fill: #dc322f; /* red */
}
.cap-shadow rect.finger-ring {
fill: #268bd2; /* blue */
}
.cap-shadow rect.finger-middle {
fill: #d33682; /* magenta */
}
.cap-shadow rect.finger-index {
fill: #6c71c4; /* violet */
}
.cap-shadow rect.finger-thumb {
fill: #2aa198; /* cyan */
}
.label {
fill: #657b83;
}
.label.shadow {
fill: #fdf6e3;
}
.controllabel {
stroke: #657b83;
fill: none;
}
.controllabel.shadow {
stroke: #fdf6e3;
fill: none;
}
.marker line {
stroke: #fdf6e3;
}
.marker line.shadow {
stroke: #93a1a1;
}
|