How would you change the marker type of an ordered list (<ol>) to uppercase letters and the text color to black?
<ol>
ol { list-style-type: upper-alpha; color: black; }
ol { list-marker: upper-alpha; color: black; }
ol { list-style: upper-alpha; text-color: black; }
ol { type: upper-alpha; font-color: black; }