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

.dark {
  --content-primary: #D3C1A6;
  --content-secondary: #7B6A51;
  --background: #29241E;
  --code-background: #241E1A;
  --code-border: #26211C;
}