2026-01-28 22:25:02 +00:00
|
|
|
// Custom.scss
|
|
|
|
|
// Option B: Include parts of Bootstrap
|
|
|
|
|
|
|
|
|
|
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
|
2026-01-28 22:46:28 +00:00
|
|
|
@import "./bootstrap/scss/functions";
|
2026-01-28 22:25:02 +00:00
|
|
|
|
|
|
|
|
// 2. Include any default variable overrides here
|
|
|
|
|
$primary: #F76436;
|
|
|
|
|
$secondary: #3C552D;
|
|
|
|
|
$success: #8BAE67;
|
|
|
|
|
$danger: #FFC01B;
|
|
|
|
|
$info: #D7B26D;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 3. Include remainder of required Bootstrap stylesheets
|
2026-01-28 22:46:28 +00:00
|
|
|
@import "./bootstrap/scss/variables";
|
2026-01-28 22:25:02 +00:00
|
|
|
|
|
|
|
|
// 4. Include any default map overrides here
|
|
|
|
|
|
|
|
|
|
// 5. Include remainder of required parts
|
2026-01-28 22:46:28 +00:00
|
|
|
@import "./bootstrap/scss/maps";
|
|
|
|
|
@import "./bootstrap/scss/mixins";
|
|
|
|
|
@import "./bootstrap/scss/root";
|
2026-01-28 22:25:02 +00:00
|
|
|
|
|
|
|
|
// 6. Optionally include any other parts as needed
|
2026-01-28 22:46:28 +00:00
|
|
|
@import "./bootstrap/scss/utilities";
|
|
|
|
|
@import "./bootstrap/scss/reboot";
|
|
|
|
|
@import "./bootstrap/scss/type";
|
|
|
|
|
@import "./bootstrap/scss/images";
|
|
|
|
|
@import "./bootstrap/scss/containers";
|
|
|
|
|
@import "./bootstrap/scss/grid";
|
|
|
|
|
@import "./bootstrap/scss/helpers";
|
2026-01-28 22:25:02 +00:00
|
|
|
|
|
|
|
|
// 7. Optionally include utilities API last to generate classes based on the Sass map in `_utilities.scss`
|
2026-01-28 22:46:28 +00:00
|
|
|
@import "./bootstrap/scss/utilities/api";
|
2026-01-28 22:25:02 +00:00
|
|
|
|
|
|
|
|
// 8. Add additional custom code here
|
|
|
|
|
$custom-colors: (
|
|
|
|
|
"color1": $primary,
|
|
|
|
|
"color2": $danger,
|
|
|
|
|
"color3": #8C552D,
|
|
|
|
|
"color4": $success,
|
|
|
|
|
"color5": $info,
|
|
|
|
|
);
|
|
|
|
|
$off-white: #F8F9FA;
|
|
|
|
|
$off-black: #495057;
|
|
|
|
|
|
|
|
|
|
@import "./sidebar.scss";
|
|
|
|
|
|
|
|
|
|
// Merge the maps
|
|
|
|
|
$theme-colors: map-merge($theme-colors, $custom-colors);
|