From 928a6f0794409ebfadd32a08f81d14f65b331ce5 Mon Sep 17 00:00:00 2001 From: koenemann Date: Thu, 17 Aug 2017 15:10:40 +0200 Subject: [PATCH] Reset color scheme to BS defaults --- sass/theme.scss | 3 +-- sass/theme/_theme_variables.scss | 16 ---------------- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/sass/theme.scss b/sass/theme.scss index 8e0d991..9d765f4 100644 --- a/sass/theme.scss +++ b/sass/theme.scss @@ -1,6 +1,5 @@ - -@import "assets/bootstrap4";// <--------- Loads Bootstrap3 or Bootstrap4. Change from /bootstrap3 to /bootstrap4 Watch out! just for testing in the moment! @import "theme/theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap or UnderStrap variables here +@import "assets/bootstrap4";// <--------- Loads Bootstrap3 or Bootstrap4. Change from /bootstrap3 to /bootstrap4 Watch out! just for testing in the moment! @import "understrap/understrap";// <-------- Loads the UnderStrap defaults. Just a few classes to incorporate BS in WP //Optional files - If you dont use the corresponding scripts/fonts comment em out diff --git a/sass/theme/_theme_variables.scss b/sass/theme/_theme_variables.scss index d350298..5adc67c 100644 --- a/sass/theme/_theme_variables.scss +++ b/sass/theme/_theme_variables.scss @@ -1,20 +1,4 @@ // Use this file to overwrite the basic Bootstrap variables and add your own variables // To overwrite a Bootstrap variable you donĀ“t have to touch the Bootstrap folder. // Just copy a variable from /sass/bootstrap/_variables.scss, paste it here and edit the value. -// As example you find one of the most important Bootstrap variable below: $brand-primary. -// Thats the ugly Bootstrap blue used for all the links, primary buttons etc. -// Just add your color code here, compile the theme.scss file to change this color everywhere -$font-family-sans-serif:Arial, sans-serif; -$understrap-primary: #7852B2; //#ff6d5a - -$theme-colors: ( - primary: $yellow, - secondary: $gray-600, - success: $green, - info: $cyan, - warning: $yellow, - danger: $red, - light: $gray-100, - dark: $gray-800 -);