Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change the text colour of ion-item

I've been struggling to figure out how to change the text colour of ion-item. This is wahat I have so far, i've found how to change the background colour.

<ion-item style="background-color: #82B1FF">

But how do I change the text colour?

like image 236
Ramonster Avatar asked Oct 17 '22 18:10

Ramonster


1 Answers

CSS style for changing font-color is color.

So you can add: color: #fff; For a white font color, for example.

like image 92
Robotnicka Avatar answered Oct 20 '22 09:10

Robotnicka