// Custom.scss // Option A: Include all of Bootstrap // Include any default variable overrides here (though functions won't be available) @import "../node_modules/bootstrap/scss/bootstrap"; // Then add additional custom code here .gradient-featured { background: $white; background: linear-gradient(135deg, $white 0%, tint-color($primary, 80%) 100%); } @if $enable-dark-mode { @include color-mode(dark) { .gradient-featured { background: rgb(17,0,84); background: linear-gradient(90deg, rgba(17,0,84,1) 25%, rgba(184,78,92,1) 100%); } } }