24 lines
771 B
SCSS
24 lines
771 B
SCSS
//Bootstrap Variables
|
|
// NOTE: It currently isn't possible to swap out all bootstrap styles because of the scss generators.
|
|
// So we have some hardcoded stuff. (v5 has more css variables on the way to address this)
|
|
|
|
$theme-colors: (
|
|
"primary": var(--primary-color, #4ac694),
|
|
"danger": var(--error-color, #BD362F),
|
|
"secondary": #6c757d,
|
|
"light": #f8f9fa
|
|
);
|
|
|
|
$form-select-indicator-color:#cecece;
|
|
$accordion-icon-color: #cecece;
|
|
$accordion-icon-active-color: #cecece;
|
|
|
|
|
|
|
|
$grid-breakpoints-xs: 0;
|
|
$grid-breakpoints-sm: 576px;
|
|
$grid-breakpoints-md: 768px;
|
|
$grid-breakpoints-lg: 992px;
|
|
$grid-breakpoints-xl: 1200px;
|
|
|
|
$grid-breakpoints: (xs: $grid-breakpoints-xs, sm: $grid-breakpoints-sm, md: $grid-breakpoints-md, lg: $grid-breakpoints-lg, xl: $grid-breakpoints-xl);
|