blob: 81d75a089817313b0977f31e4b85f50a0335016d (
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
|
/* marian -- devotional palette (Our Lady), light: white robe, Marian-blue
* mantle, gold crown of twelve stars. Colour only; see docs/THEMES.md.
*/
:root {
--bg: #f3f6fb; /* white robe, faint blue */
--fg: #23303f; /* navy ink */
--muted: #7f8ea3; /* dusty blue-grey */
--accent: #255fbf; /* Marian blue */
--link: #3a6fb5;
--refrain: #b08d3a; /* gold crown */
--border: #d3dced;
--theme-font: var(--font-serif-old);
}
.heading {
color: var(--accent);
}
.citation {
color: var(--muted);
}
.vnum {
color: var(--muted);
}
.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);
}
|