blob: a832d96148c22814079a0d9da03ea70efe20f3f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:300,700|Crimson+Text:400,400i,700");
// colors
$light-color: #fcfbf7;
$light-color-secondary: rgb(241,
239,
235);
$main-accent: #61aaa3;
// $alt-accent: #cdd5ec;
// $alt-accent: #cdeceb;
$alt-accent: #f9e1db;
$lighter-alt-accent: rgb(207,
220,
240);
$intermediate-color: #9c9396;
$dark-color: #121721;
// fonts
$sans-serif: "Noto Sans",
sans-serif;
// $sans-serif: "Roboto Slab", sans-serif;
$serif: "Crimson Text",
serif;
// misc values
$border-radius: 0.3em;
|