aboutsummaryrefslogtreecommitdiff
path: root/web/style/themes.css
blob: e006513fb630e98e5f29b92fa580732d3c6626c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
body.theme-dark {
    --accent-light: rgb(255, 163, 87);
    --accent-dark: rgb(199, 90, 0);
    --background-dark: #070707;
    --background-light: #1c1c1c;
    --background-very-light: #323232;
    --font: rgb(218, 218, 218);
    --font-dark: rgb(148, 148, 148);
    --font-highlight: white;
}
body.theme-light {
    --accent-light: rgb(255, 163, 87);
    --accent-dark: rgb(199, 90, 0);
    --background-dark: #ffffff;
    --background-light: #e2e2e2;
    --background-very-light: #b9b9b9;
    --font: rgb(43, 43, 43);
    --font-dark: rgb(0, 0, 0);
    --font-highlight: rgb(0, 0, 0);
}