Replies: 1 comment
|
Hello @Olimbot, Thanks for raising this. I don’t think this change is necessary. Hummingbird v2 is built on top of Bootstrap 5, so Bootstrap should remain the base for Sass variables and customization. The theme should then define its own overrides on top of that, which is already how it works today. Since Bootstrap already defines its variables with |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The problem
Hello,
The theme's Sass files use Bootstrap variables.
As a developer, if you want to create a custom overlay with colors or other customizations, the Bootstrap variables in Hummingbird are not enabled by default.
For example, in these two files:
For example, the colors are defined as:
$blue: #0b69f6;
$green: #188251;
$red: #ff4657;
Ideally, it would be practical for them to be:
$blue: #0b69f6 !default;
$green: #188251 !default;
$red: #ff4657 !default;
Regards,
The solution
Add !default for some variables.
Additional context
No response
Do you plan to work on this subject?
All reactions