1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
:root {
--content-primary: rgb(24, 24, 24);
--content-secondary: rgb(88, 88, 88);
--background: rgb(248, 248, 248);
--code-background: rgb(232, 232, 232);
--code-border: rgb(216, 216, 216);
}
.dark {
--content-primary: rgb(248, 248, 248);
--content-secondary: rgb(184, 184, 184);
--background: rgb(24, 24, 24);
--code-background: rgb(40, 40, 40);
--code-border: rgb(56, 56, 56);
}
|