Remove Sass color maps
Sass maps are not needed to create color or theme tokens. With
Bootstrap's use of the !default flag, only unassigned variables will
default to Bootstrap defined colors. Sass variable assignements
are sufficient for overriding colors.
https://sass-lang.com/documentation/variables#default-values
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: If69f712602d3c46747a68fd70319a20ef8002bd6
diff --git a/src/assets/styles/bmc/helpers/_colors.scss b/src/assets/styles/bmc/helpers/_colors.scss
index 61f1559..6e090fb 100644
--- a/src/assets/styles/bmc/helpers/_colors.scss
+++ b/src/assets/styles/bmc/helpers/_colors.scss
@@ -30,16 +30,6 @@
$red: $red-500;
$yellow: $yellow-500;
-// Bootstrap will generate CSS variables for
-// all of the colors in this map.
-// https://getbootstrap.com/docs/4.0/getting-started/theming/#css-variables
-$colors: (
- "blue": $blue,
- "green": $green,
- "red": $red,
- "yellow": $yellow,
-);
-
// Sass Theme Color Variables
// Can be used as variants
$danger: $red;
@@ -59,16 +49,3 @@
$warning-light: $yellow-100;
$success-light: $green-100;
-// Bootstrap will generate CSS variables for
-// all of the colors in this map.
-// https://getbootstrap.com/docs/4.0/getting-started/theming/#css-variables
-$theme-colors: (
- "primary": $primary,
- "secondary": $secondary,
- "dark": $dark,
- "light": $light,
- "danger": $danger,
- "info": $info,
- "success": $success,
- "warning": $warning
-);