While experimenting with AngularJS Materials, I noticed that the text in some elements like <md-input-container>
and <md-select>
may be too light for some people to read easily. I wanted to find a way to make the text more visible without changing the background color.
I was able to adjust the color of plain text using this CSS:
md-input-container.md-default-theme label, md-input-container label, md-input-container.md-default-theme .md-placeholder, md-input-container .md-placeholder{
color: black;
}
Although I'm satisfied with the text color solution, I am curious if there is a method to enhance the visibility of the drop-down menu in AngularJS Materials?