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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*! Themestr.app `Herbie` Bootstrap 4.3.1 theme */
@import '../../../node_modules/bootstrap/scss/functions';
@import '../../../node_modules/bootstrap/scss/variables';
@import '../../../node_modules/bootstrap/scss/mixins';
// Theme variable overrides
//-------------------------
// Fonts
@import url(https://fonts.googleapis.com/css?family=Nunito:200,300,400,700);
$font-family-base:Nunito;
@import url(https://fonts.googleapis.com/css?family=Crete+Round:200,300,400,700);
$headings-font-family:Crete Round;
// Colors
/*$enable-grid-classes:false;*/
$primary:#083358;
$secondary:#F67280;
$success:#0074E4;
$danger:#FF4057;
$info:#74DBEF;
$warning:#FC3C3C;
$light:#F2F2F0;
$dark:#072247;
$theme-colors: (
'primary': $primary,
'secondary': $secondary,
'success': $success,
'danger': $danger,
'info': $info,
'warning': $warning,
'light': $light,
'dark': $dark
);
// Add more shades to gray
$gray-150: #FAFAFA;
$gray-175: #F0F0F0;
// (importing Bootstrap)
@import '../../../node_modules/bootstrap/scss/bootstrap';
// Project variables
//------------------
@import '../_abstract';
@import '../_modules';
@import "../_components";
@import "../_base";
@import "../_legacy";
// Custom rules specific to the theme
//-----------------------------------