<html>
<head>
<meta charset="utf-8">
<style>
ul>li:nth-child(2n) {
color: cornflowerblue;
}
ul>li:nth-child(2n+1) {
color: coral;
}
</style>
</head>
<body>
<ul>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
<li>568975896</li>
</ul>
</script>
</body>
</html>