Bring the ordinal color sequence from chart-colors to the new color-scales construct

This also required re-ordering the SCSS imports since this depends on
colors introduced by bulma.
This commit is contained in:
Michael Lange 2021-03-08 12:41:11 -08:00
parent 6a1b35e03a
commit d48dd688fb
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,6 @@
@import './utils/reset.scss';
@import './utils/z-indices';
@import './utils/product-colors';
@import './utils/structure-colors';
@import './utils/bumper';
@import './utils/layout';
@ -15,6 +14,8 @@
// Bring in the rest of Bulma
@import 'bulma/bulma';
@import './utils/structure-colors';
// Override Bulma details where appropriate
@import './core/buttons';
@import './core/breadcrumb';

View File

@ -35,7 +35,9 @@ $green-500: #2eb039;
// Chart Color Scales
$chart-reds: $red-500, $red-400, $red-300, $red-200;
$chart-blues: $blue-500, $blue-400, $blue-300, $blue-200;
$chart-ordinal: $orange, $yellow, $green, $turquoise, $blue, $purple, $red;
$chart-scales: (
'reds': $chart-reds,
'blues': $chart-blues,
'ordinal': $chart-ordinal,
);