summaryrefslogtreecommitdiff
path: root/assets/css/colors/eink.css
blob: 87a9507980db94a2f08f2f87c33bd85e9e1a9f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
:root {
    --content-primary: rgb(0, 0, 0);
    --content-secondary: rgb(0, 0, 0);
    --background: rgb(255, 255, 255);
    --code-background: rgb(255, 255, 255);
    --code-border: rgb(0, 0, 0);
}

.dark {
    --content-primary: rgb(255, 255, 255);
    --content-secondary: rgb(255, 255, 255);
    --background: rgb(0, 0, 0);
    --code-background: rgb(0, 0, 0);
    --code-border: rgb(255, 255, 255);
}