How to change the colors of the status option?

Hi,
is there an option to adjust the badge colors ? e.g. instead of the default ones, use a hex code like #fffff
Because otherwise I need to use an image, and that doens’t work right.

It’s meant for a table which is implemented in another part of the site with an Auto Component>

If you inspect the badges you will see there is a class associated with the badges like
.badge.badge-wh-1, .badge.badge-wh-2 upto .badge.badge-wh-10

You can change the colour of the background in the CSS tab of your page of one or more of those badges.

.badge.badge-wh-2 {
 background-color: yourcolor;
}

@slimpens you can bypass colors using css

.badge .success {
 background-color: #000;
}