summaryrefslogtreecommitdiff
path: root/sass/theme/_theme_variables.scss
diff options
context:
space:
mode:
authorMax2018-10-15 23:46:42 +0200
committerMax2018-10-15 23:46:42 +0200
commit00c9709fd9763542e848f6278db8ba26af5c9886 (patch)
tree92cb1c1ee4c467118e1e5a4c7e233d3feac6efa8 /sass/theme/_theme_variables.scss
downloadfuselkoenig_de-00c9709fd9763542e848f6278db8ba26af5c9886.tar.gz
Initial commit.
Diffstat (limited to 'sass/theme/_theme_variables.scss')
-rw-r--r--sass/theme/_theme_variables.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/sass/theme/_theme_variables.scss b/sass/theme/_theme_variables.scss
new file mode 100644
index 0000000..7d14e5d
--- /dev/null
+++ b/sass/theme/_theme_variables.scss
@@ -0,0 +1,28 @@
+// 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 src/sass/bootstrap4/_variables.scss, paste it here and edit the value.
+
+
+//$primary: #0061ff; // Thats a sample how you could change a BootStrap variable.
+$primary: (
+ color: #f08506,
+ dark: darken(#f08506, 10%),
+ light: lighten(#f08506, 10%)
+);
+$secondary: (
+ color: #f08506,
+ dark: darken(#f08506, 10%),
+ light: lighten(#f08506, 10%)
+);
+
+$white: #fff !default;
+$gray-100: #f8f9fa !default;
+$gray-200: #e9ecef !default;
+$gray-300: #dee2e6 !default;
+$gray-400: #ced4da !default;
+$gray-500: #adb5bd !default;
+$gray-600: #6c757d !default;
+$gray-700: #495057 !default;
+$gray-800: #343a40 !default;
+$gray-900: #212529 !default;
+$black: #000 !default;