how to change the bullet color in css code example
Example 1: how to change only bullet color in css
li::before {content: "•"; color: red;
display: inline-block; width: 1em;
margin-left: -1em}
Example 2: change color of bullet points css
li::marker {
color: red;
}
/* ^ just set the color of the marker pseudo element */