How would you change the marker type of an unordered list (<ul>) to circles and the text color to gray?
<ul>
ul { list-style-type: circle; color: gray; }
ul { marker-type: circle; text-color: gray; }
ul { bullet: circle; color: gray; }
ul { list-marker: circle; font-color: gray; }