MDL-65299 theme_classic: Allow default.scss theme-colors override.

This commit is contained in:
David Balch 2019-04-10 09:27:25 +01:00
parent dbbbeb89bf
commit da37a3add1

View file

@ -60,7 +60,9 @@ $alert-border-width: 0 !default;
$card-group-margin: .25rem;
$theme-colors: (
// stylelint-disable
$theme-colors: () !default;
$theme-colors: map-merge((
primary: $primary,
secondary: $gray-200,
success: $success,
@ -69,7 +71,8 @@ $theme-colors: (
danger: $danger,
light: $gray-100,
dark: $gray-800
);
), $theme-colors);
// stylelint-enable
// Import FontAwesome.
@import "fontawesome";