diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md index 9e6c88eaef5e9881751d2b504b010e3f20655276..48d1b058f75b02d1b61ec1f2b19a65b58d84708d 100644 --- a/docs/4.0/getting-started/theming.md +++ b/docs/4.0/getting-started/theming.md @@ -120,10 +120,21 @@ $theme-colors: ( #### Remove from map -To remove colors from `$theme-colors`, or any other map, use `map-remove`: +To remove colors from `$theme-colors`, or any other map, use `map-remove`. Be aware you must insert it between our requirements and options: {% highlight scss %} -$theme-colors: map-remove($theme-colors, "success", "info", "danger"); +// Required +@import "node_modules/bootstrap/scss/functions"; +@import "node_modules/bootstrap/scss/variables"; +@import "node_modules/bootstrap/scss/mixins"; + +$theme-colors: map-remove($theme-colors, "info", "light", "dark"); + +// Optional +@import "node_modules/bootstrap/scss/root"; +@import "node_modules/bootstrap/scss/reboot"; +@import "node_modules/bootstrap/scss/type"; +... {% endhighlight %} #### Required keys