fix: use darker color to have a clear contrast

This commit is contained in:
Christian Rank
2019-06-21 12:00:58 +02:00
parent 60e6079919
commit 53fb8e67e6

View File

@ -18,7 +18,7 @@ Creates a striped list with alternating background colors, which is useful for d
```css
li:nth-child(odd) {
background-color: #eee;
background-color: #ddd;
}
```