Then you can either set a cls
and include that color in your stylesheet, or use https://bryntum.com/docs/scheduler/api/Core/widget/Button#config-style
Sorry, I can't seem to get this to work.
If you can provide a small example of how this would be used in the inline-project demo if I wanted to add a custom class to the button.
I tried doing the following and didn't work in the inline-data demo project.
<bryntum-button
text = 'Change data'
cls="test"
style="background-color: red;"
(onAction) = "onChangeData()"
></bryntum-button>
app.component.scss
.test{
background-color: red;
color: blue;
}