1li::before {content: "•"; color: red;
2 display: inline-block; width: 1em;
3 margin-left: -1em}
4
1li::marker {
2 color: red;
3}
4/* ^ just set the color of the marker pseudo element */
1li::before {content: counter(li); color: red;
2 display: inline-block; width: 1em;
3 margin-left: -1em}
4