Any good examples out there for overriding the sil...
# kobweb
c
Any good examples out there for overriding the silk theme for a button? I'm finding the constructors hard to read through in the docs
Copy code
ctx.theme.palettes.light.button = ?
d
Do you just want to change the color? Or the look and feel?
c
Look and feel - styling the container & outline colors, border radius, inner font colors, etc.
d
I recommend using
modifyStyle
, especially for Button
If you want a one off, you need to define a variant
c
nice that makes sense - ty!