|
3 | 3 | @import "node_modules/bootstrap/scss/variables";
|
4 | 4 | @import "node_modules/bootstrap/scss/mixins";
|
5 | 5 |
|
| 6 | +// Web fonts |
| 7 | +@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300|Source+Code+Pro:400,600|Source+Sans+Pro:400,600&display=swap'); |
| 8 | + |
6 | 9 | // Custom values that override the default variables of Bootstrap
|
7 | 10 | $colors: (
|
8 | 11 | "red": #ca445e,
|
9 | 12 | "orange": #f26527
|
10 | 13 | );
|
11 | 14 | $theme-colors: (
|
12 |
| - "primary": #002b36, |
13 |
| - "contrast": #ca445e, // contrasts with primary (used on dark backgrounds) |
14 |
| - "secondary": #ca445e, // used on light backgrounds |
| 15 | + "primary": #002b36, // primary toolbar+sidebar dark color |
| 16 | + "secondary": #ca445e, // secondary color used on light backgrounds |
| 17 | + "accent": #ca445e, // secondary-like for dark backgrounds |
| 18 | + "contrast": #f26527, // used on dark backgrounds |
15 | 19 | );
|
16 |
| -@import "node_modules/bootstrap/scss/bootstrap"; |
| 20 | + |
| 21 | +$code-color: theme-color("secondary"); |
| 22 | +$font-family-monospace: "Source Code Pro", monospace; |
| 23 | +$font-family-sans-serif: "Source Sans Pro", sans-serif; |
| 24 | +$font-family-serif: "Roboto Slab", serif; |
| 25 | +$font-family-base: $font-family-serif; |
| 26 | +$headings-font-family: $font-family-sans-serif; |
| 27 | + |
| 28 | +// Features imports - follow the order of bootstrap.scss (bootstrap's module) |
| 29 | +@import "node_modules/bootstrap/scss/root"; |
| 30 | +@import "node_modules/bootstrap/scss/reboot"; |
| 31 | +@import "node_modules/bootstrap/scss/type"; |
| 32 | +@import "node_modules/bootstrap/scss/images"; |
| 33 | +@import "node_modules/bootstrap/scss/code"; |
| 34 | +@import "node_modules/bootstrap/scss/grid"; |
| 35 | +@import "node_modules/bootstrap/scss/tables"; |
| 36 | +@import "node_modules/bootstrap/scss/buttons"; |
| 37 | +@import "node_modules/bootstrap/scss/navbar"; |
| 38 | +@import "node_modules/bootstrap/scss/breadcrumb"; |
| 39 | +@import "node_modules/bootstrap/scss/badge"; |
| 40 | +@import "node_modules/bootstrap/scss/spinners"; |
| 41 | +@import "node_modules/bootstrap/scss/utilities"; |
0 commit comments