-
Notifications
You must be signed in to change notification settings - Fork 1
/
_settings.scss
executable file
·40 lines (32 loc) · 1010 Bytes
/
_settings.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
/*
* Settings for our app.
*/
// Import our fonts.
@include web-fonts("Patua One", ("Open Sans": ("300", "300 italic", "700")),
("Libre+Baskerville": ("300", "300 italic")));
// Override our font-awesome path.
$fa-font-path: '/bower_components/font-awesome/fonts';
// Main colors.
$white: #ffffff;
$black: #000000;
$blue: #00cae5;
$green: #8ce500;
$yellow: #f2da00;
$orange: #ff9d00;
$red: #e50b18;
// Secondary colors.
$dark-grey: #4a4f51;
$light-grey: #d7d7d7;
$lighter-grey: #cccccc;
// Fonts.
$main-font: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
$accent-font: 'Patua One', Georgia, 'Times New Roman', Times, serif;
$fancy-font: 'Libre Baskerville', Baskerville, 'Baskerville Old Face',
'Hoefler Text', Garamond, 'Times New Roman', serif;
$code-font: monospace;
// Vertical rhythm / typography.
// Our default baseline font size is 16px with a line height of 32px. You can
// change that here.
$base-font-size: 1rem;
// No units on our line height!
$base-line-height: 2;