By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 typography.css

View raw Download
text/plain • 501 B
ASCII text
        
            
1
body {
2
font: var(--gui-font);
3
background: var(--color-background);
4
color-scheme: var(--color-scheme);
5
color: var(--color-background-text);
6
}
7
8
h1.headline {
9
font: var(--headline-font);
10
}
11
12
h1 {
13
font: var(--h1-font);
14
}
15
16
h2 {
17
font: var(--h2-font);
18
}
19
20
h3 {
21
font: var(--h3-font);
22
}
23
24
h4 {
25
font: var(--h4-font);
26
}
27
28
h5 {
29
font: var(--h5-font);
30
}
31
32
h6 {
33
font: var(--h6-font);
34
}
35
36
p, section {
37
font: var(--body-font);
38
}
39
40
label {
41
color: var(--color-label-text);
42
}
43