Shifting the Pink Noloco Brand color to the App's brand color

A small nice-to-have.

It would be nice for the pink color that is automated and can’t be changed for items like required notices on forms or when records are grouped by a field to default to the app’s primary color.

I know why it’s there and why it’s pink, because that’s a primary Noloco brand color. But I imagine from a user perspective if none of the app we built for them is pink, and it rarely is :slight_smile: they would wonder why all of a sudden some components of theirs are pink.

3 Likes

Our users got confused by the pink so this would be amazing. Specifying a error_message token color would be great.

This would be great to have as a native feature, but just for those less technical people this is also possible with custom code, below is an example on how to change it to a more standard red, just copy/paste into the header code.

<style>
    .bg-pink-500 {
        background-color: #ef4444;
    }
    .ring-pink-500 {
        --tw-ring-color: #ef4444;
    }
</style>

2 Likes

oooo thank you @EthosLuke!!