CHANGE BULLET COLOR
Run
<!DOCTYPE html>
<html lang="en">
<head>
 <title>HTML </title>
 <style>
  ul {
    list-style: none;
  }
   ul li::before{
	  color: green;
	  content: "\2022";
	  font-weight: bold;
	  display: inline-block;
	  margin-left: -1em;
	  width: 1em;
	}
	
 </style>
</head>
<body>
  <ul>
    <h2> Changing Bullet color </h2>
    <li><span>Item1</span></li>
	<li><span>Item2</span></li>
	<li><span>Item3</span></li>
	<li><span>Item4</span></li>
  </ul>  
</body>
</html>