Change text color on ionic

0

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

Is there any global variable to change the whole text at once, instead of changing each page at a time?

    
asked by anonymous 03.11.2018 / 18:16

2 answers

0

Yes, by ionic being developed in HTML, CSS, and JS, you can use CSS to change font color.

put this css:

body {
    color: #ffffff;
}
    
04.11.2018 / 02:05
0

You can make the change in the file src/theme/variables.scss :

$text-color: white;

For more information on the variable name for each element, see link .

    
04.11.2018 / 14:44