The color on record buttons are too light

I think this is a bug or maybe a change request.

I use the black theme and I have a “Rows” layout with a record button, where the Appearance are set to Warning. But it’s hard to read the text, because the yellow color are too light.
If I change the Appearance to Success, I can see that it is the same thing, it’s difficult to read the text because of the light green.


Can this be changed in your end Noloco? And does anyone know what the CSS code would be (as a workaround), to change the background color/text color on a specific record button?

I found exactly the same with the green button, you can update with some custom CSS as follows:

/* Custom styles for green action buttons /
button.bg-green-400 {
background-color: #3CB371; /
Replace with your chosen hex code /
color: #FFFFFF; /
Ensures text remains white */
}

Change the hex to suit your needs.

Hope that helps!

3 Likes

Amazing thanks @lukebranford :slight_smile:

Thanks for the feedback folks! These changes are on our list in some upcoming changes to the app’s UI

3 Likes