From 3e8c053d51ab552bbd2dc3c4b5bd1d1bceb41e86 Mon Sep 17 00:00:00 2001 From: Piotr Starzec Date: Mon, 22 Jan 2018 20:17:03 +0100 Subject: [PATCH] restore bmd default colors --- scss/_variables.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scss/_variables.scss b/scss/_variables.scss index 1bd0d64c..168f4efb 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -19,6 +19,17 @@ $bmd-inverse-lighter: rgba($white, 0.54) !default; $bmd-label-color: $gray-light !default; $bmd-label-color-inner-focus: $gray !default; // e.g. radio label or text-muted not a control-label which is primary +// Bootstrap Material Design default colors (these can be override by user) +$theme-colors: map-merge(( + primary: $teal, + success: $green, + info: $light-blue, + warning: $deep-orange, + danger: $red, + light: $grey-100, + dark: $grey-800 +), $theme-colors); + // Customized BS variables @import "variables/bootstrap/components"; @import "variables/bootstrap/custom-forms";