Change text color in Ionic

Asked

Viewed 1,014 times

0

I’m making an application with the black background, and so the letters need to be white.

Have some global variable to change the whole text at once, instead of changing each page at a time?

2 answers

0

Yes, because Ionic is developed in HTML, CSS, and JS, you can use CSS to change the font color.

puts this css:

body {
    color: #ffffff;
}

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.