I'm using the react toolbox in my react project. Is there a way to set some default styles which override the styles from react-toolbox?
Wan't to change some colors and paddings?
Thanks for your help.
Can I do this with something like this:
postcssPlugins: [
cssnext({
features: {
customProperties: {
variables: {
'color-primary': 'var(--palette-amber-500)',
},
},
},
}),