Replies: 1 comment 2 replies
-
I'm having problems with configuring colors correctly as well. And I think it's not a "me" problem. Take this for example: $primary-text-dark: $blue-300 !default; It should be instead, clearly: $primary-text-dark: tint-color($primary, 40%) !default; This is repeated through the whole of the project. bootstrap/scss/_variables-dark.scss Line 11 in 1299b16 $primary-text-emphasis-dark: $blue-300 !default; Good luck to anyone trying to configure colors in 5.3.0. They just copy-pasted $blue everywhere. Thanks. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm just looking through the https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss and wondering why the variables at https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss#L325 aren't based off the actual, and primarily I'm concerned on
$primary
variable, instead they use the appropriate shade of what the default colour is.If I change the $primary, I would have thought it would feed through into all derived colours, instead of also needing to override those (and potentially others down the line)
Beta Was this translation helpful? Give feedback.
All reactions