Changing Default Text Color
-
I couldn’t find any variable for default text color. It’s black ‘#000’… how can I change it as default.
-
Just put your css in app.sass or app.styl, which ever you are using. Be aware, the components themselves control text color in many circumstances. That means globally changing the color might not change what you intend to have changed.
Scott
-
@s-molinari said in Changing Default Text Color:
Just put your css in app.sass or app.styl, which ever you are using. Be aware, the components themselves control text color in many circumstances. That means globally changing the color might not change what you intend to have changed.
Scott
Can’t I do it by changing a global variable… I mean isn’t there any variable that control default text color… I don’t want to use css class for every component. Thank you.
-
In order to change the default text color, you just need to set in your app.sass (or equivalent):
body
color: #444444