diff options
Diffstat (limited to 'sass/theme/_theme_variables.scss')
| -rw-r--r-- | sass/theme/_theme_variables.scss | 28 |
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; |
