I am looking to update the text color across my entire application. Currently, it's gray and I would like to change it to black. The platform I am working with is classic. I came across this code snippet in CSS:
.x-body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
After experimenting, I noticed that if I remove '-webkit-font-smoothing: antialiased;', the text color changes to black. Can anyone provide guidance on how to make this change? Additionally, I'm open to exploring alternative solutions. Thank you.