CSS to change button color

Hey all,

I’m trying to change the colors of buttons using CSS. I know it was possible in classic Glide apps, can it also be done in the new apps?

Thanks
Dvir

Do you have a Business Plan?

Yes, I’ve done some very basic use of css but so far couldn’t figure out button colors.

Try

.filled {
background-color: #color;
}

Or try

data-testid=“wbb-button” {
background-color: #color;
}

Quotes might need to be fixed if you c/p

1 Like

Thanks Joe.

First one colored the entire background of the button block, not the button itself.

I wasn’t sure how to use the second one.

Please try this.