SyntaxFix
Write A Post
Hire A Developer
Questions
Apply the color to the li and set the span (or other child element) color to whatever color the text should be.
li
span
ul { list-style-type: square; } ul > li { color: green; } ul > li > span { color: black; }
JSFiddle