<!DOCTYPE html>
<title>Example</title>
<style>
li:nth-child(3n+1) {
background-color: peachpuff;
}
li:nth-child(3n+2) {
background-color: lightblue;
li:nth-child(3n+3) {
background-color: beige;
li { padding: .5em; }
</style>
<ol>
<li>List item</li>
</ol>