i used version 3.*
for example intent color primary i see intent "success" color put on $green3 color from variable
i want to change this intent color with $forest3,
is any way to do that ?
thanks before
You can build blueprint.css yourself using the Blueprint Sass sources distributed in the /src folder in the NPM package. All the variables are set as !default values which you can override. For example, you can change intent color aliases: https://github.com/palantir/blueprint/blob/1bfd1e42303d2626bfc3923eec2195ab4dc696d2/packages/core/src/common/_color-aliases.scss#L4
Instead of using @import "~@blueprintjs/core/lib/css/blueprint.css", you would import "~@blueprintjs/core/src/blueprint.scss" _after_ changing the relevant variables.
its work , but when i hover the button its still take blue color
@renjiza you'll have to adjust more variables, like this one:
There's no first-class support for doing this kind of theming, so you'll have to dig through the Sass source to figure out all the necessary adjustments.
okay, thank you so much
no first-class support for doing this kind of theming
Damn. There goes where I was headed.
me too