Is there a way to disable and rewrite, or override Bootstrap 4's color themes when loaded from cdn?
Essentially, I was to see elements in my html, like <span class="btn btn-primary">My RED Button</span>
map-remove will not work since $theme-colors is not accessible to me. It's in the CDN source:
$theme-colors: map-remove($theme-colors, "success", "info", "danger", "primary");
I can do $primary: red !default;
but that's only going to effect classes I create on my own.
Adding $theme-colors (primary: red) !default
with !default has no effect either.
There's a discussion about this, but it does not apply to bootstrap that is loaded from CDN, as far as I understood.
I really prefer not overriding every single bootstrap class just to get the colors right, and I really prefer not loading bootstrap locally.