1
|
// Body
|
2
|
$body-bg: #f8fafc;
|
3
|
|
4
|
// Typography
|
5
|
//$font-family-sans-serif: 'Nunito', sans-serif;
|
6
|
$font-size-base: 0.9rem;
|
7
|
$line-height-base: 1.6;
|
8
|
|
9
|
// Design fonts
|
10
|
//$font-family-avenir-roman: Avenir Roman;
|
11
|
//$font-family-avenir-medium: Avenir Medium;
|
12
|
//$font-family-avenir-black: Avenir Black;
|
13
|
$font-family-nunito: Nunito;
|
14
|
$weight-roman: 400;
|
15
|
$weight-medium: 600;
|
16
|
$weight-black: 900;
|
17
|
|
18
|
// Theme fonts
|
19
|
$font-family-one: $font-family-nunito;
|
20
|
$font-weight-one: $weight-roman;
|
21
|
$font-weight-two: $weight-medium;
|
22
|
$font-weight-three: $weight-black;
|
23
|
|
24
|
// Colors
|
25
|
$blue: #3490dc;
|
26
|
$indigo: #6574cd;
|
27
|
$purple: #9561e2;
|
28
|
$pink: #f66d9b;
|
29
|
$red: #e3342f;
|
30
|
$orange: #f6993f;
|
31
|
$yellow: #ffed4a;
|
32
|
$green: #38c172;
|
33
|
$teal: #4dc0b5;
|
34
|
$cyan: #6cb2eb;
|
35
|
$white: #ffffff;
|
36
|
$black: #000;
|
37
|
|
38
|
// Design colors
|
39
|
$pastel-grey: #ddd1b9;
|
40
|
$whey: #efdab3;
|
41
|
$desert-sand: #ead4b0;
|
42
|
$raisin-black: #272727;
|
43
|
|
44
|
// Theme colors
|
45
|
$theme-color-one: $white;
|
46
|
$theme-color-two: $pastel-grey;
|
47
|
$theme-color-three: $whey;
|
48
|
$theme-color-four: $desert-sand;
|
49
|
$theme-color-five: $raisin-black;
|