mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2024-11-05 23:03:02 +01:00
Alan Orth
71bcd1092c
The ISEAL Branding Guidelines Version 3.0 (June 2021) say we should use Arial font for online material and it specifies the RGB values to use for headings, sub-headings, and body text. It also specifies four secondary colors to be used in support of the primary colors.
15 lines
390 B
SCSS
15 lines
390 B
SCSS
// override some Bootstrap colors. Apparently we need to do this *before* we
|
|
// process Bootstrap.
|
|
|
|
// ISEAL primary (dark) blue
|
|
$primary: rgb(0, 82, 142);
|
|
// ISEAL secondary (light) blue
|
|
$secondary: rgb(27, 118, 188);
|
|
|
|
// selectively import components we need from bootstrap
|
|
// see: node_modules/bootstrap/scss/bootstrap.scss
|
|
@import 'bootstrap';
|
|
|
|
// local style overrides
|
|
@import 'main';
|