Forum Moderators: open
I think you can also define the ul style and then put a span around the text in each <li></li> to change the font color. This would give you scalable bullets.
<ul>
<li style="color: green;"><span style="color: pink;">eins</span></li>
<li style="color: blue;"><span style="color: orange;">zwei</span></li>
<li style="color: red;"><span style="color: black;">drei</span></li>
</ul>
It may not be pretty, but it sure is colorful... ;)