-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_variables.scss
45 lines (38 loc) · 1 KB
/
_variables.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Color palette:
$black: #434944;
$red: #da5673;
$green: #8cc16d;
$yellow: #eebf35;
$blue: #5cabdc;
$magenta: #b595cf;
$cyan: #44a9ba;
$white: #fff;
$light-black: #6c6d6b;
$light-red: #dba2b4;
$light-green: #898e38;
$light-yellow: #898e38;
$light-blue: #126b8c;
$light-magenta: #7457a2;
$light-cyan: #87c7d4;
$light-white: #bfc2bc;
// Font settings:
$japanese-font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', sans-serif;
$base-font-size: 16px;
$base-line-height: 1.8;
$scale-ratio: 2;
$header-font-family: 'Nova Square', $japanese-font-family;
$header-color: $black;
$header-weight: bold;
$body-font-family: 'Raleway', $japanese-font-family;
$body-color: $light-black;
$body-background-color: $white;
$body-weight: normal;
$link-color: $light-blue;
$code-font-family: 'Nova Mono', 'Monaco', monospace;
$code-color: $white;
$code-background-color: $black;
$code-line-height: 1.55;
$inline-code-color: $white;
$inline-code-background-color: $light-black;
// Width:
$max-content-width: 620px;