summaryrefslogtreecommitdiff
path: root/assets/css/colors/spacegray.css
blob: 0c02c2f8bf07cbb1a4e4b642463382ef73b6b14f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
Based on colors sourced from:
https://github.com/chriskempson/base16-default-schemes/blob/master/default-dark.yaml
o7 chriskempson, my heart goes out to thee
*/

:root {
    --content-primary: rgb(24, 24, 24); /*base00*/
    --content-secondary: rgb(88, 88, 88); /*base03*/
    --background: rgb(248, 248, 248); /*base07*/
    --code-background: rgb(232, 232, 232); /*base06*/
    --code-border: rgb(216, 216, 216); /*base05*/
}

.dark {
    --content-primary: rgb(248, 248, 248); /*base07*/
    --content-secondary: rgb(184, 184, 184); /*base04*/
    --background: rgb(24, 24, 24); /*base00*/
    --code-background: rgb(40, 40, 40); /*base01*/
    --code-border: rgb(56, 56, 56); /*base02*/
}