Closed oliverb closed 1 year ago
Hi @oliverb
Nice catch - thanks! :pray:
It looks like this will just make a slight adjustment to the shade of green (success) color in the colorways. I think it's subtle enough that it shouldn't be considered a breaking change. After this is merged, I'll release it as patch 1.1.1
Noticed a small bug when trying to apply your code to our in-house Bootstrap template.
Currently,
lstrip("--bs-")
does not strip the exact string but all matching characters from the left. Thus--bs-secondary
is parsed toecondary
and will never match the lookup for desired role colors. On our end I simply resorted to stripping the appropriate number of characters from the left.Cheers Oliver