21 lines
796 B
SCSS
21 lines
796 B
SCSS
// 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
|
||
);
|