blob: bd9cc254a511d30e2d04bae5c9c7bc3b59c04467 (
plain) (
blame)
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
|
/* transfiguration -- religious-order palette, dark. Colour only; see
* docs/THEMES.md. Tokens per /home/lukasz/git/transfiguration-themes/palettes/transfiguration.json.
*/
:root {
--bg: #262e28;
--fg: #e6dec6;
--muted: #99a18c;
--accent: #d3b380; /* gold */
--link: #97ad6e; /* olive */
--refrain: #97ad6e; /* olive, same as link for this theme */
--border: #4a5347;
--vnum: #d3b380; /* gold, not muted, for this theme */
}
.heading {
color: var(--accent);
}
.citation {
color: var(--muted);
}
.vnum {
color: var(--vnum);
}
.refrain {
color: var(--refrain);
}
a {
color: var(--link);
}
a:hover,
a:focus {
color: var(--accent);
}
.controls,
.version-label,
.reading-section + .reading-section {
border-color: var(--border);
}
.controls input,
.controls select,
.controls button {
border-color: var(--border);
}
|