Mehdi Faraji
Mehdi Faraji

Reputation: 3806

How can I set all text color in react components?

I have multiple components in react project and What I'm trying to do is set all the text on the page to white .

This is the index.css file :

:root {
    color: white !important;
}

But it's not working so How can I set every text rendered on the page to white ?

Upvotes: 0

Views: 201

Answers (1)

kyun
kyun

Reputation: 10264

*{
    color: white !important;
}

Try this one.

Upvotes: 2

Related Questions