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