nidus-sync/scss/custom.scss
Eli Ribble 38d492e9da
Rework custom bootstrap theme to include all of bootstrap
I already had most of it anyway. This also fixes our buttons to have the
correct contrast.
2026-01-30 15:08:11 +00:00

39 lines
712 B
SCSS

// 1. Include specific theme variables
$primary: #F76436;
$secondary: #3C552D;
$success: #8BAE67;
$warning: #FFC01B;
$danger: #6b2737;
$info: #D7B26D;
$off-white: #F8F9FA;
$off-black: #495057;
// 2. Configure color contrast
$color-contrast-dark: #000;
$color-contrast-light: #fff;
$min-contrast-ratio: 2.0;
$custom-colors: (
"color1": $primary,
"color2": $secondary,
"color3": $success,
"color4": $danger,
"color5": $warning,
"color6": $info,
);
$theme-colors: map-merge(
(
"primary": $primary,
"secondary": $secondary,
"success": $success,
"danger": $danger,
"warning": $warning,
"info": $info
),
$custom-colors
);
@import "./bootstrap/scss/bootstrap";
@import "./sidebar.scss";