ul li{
    list-style-type: square;
    color: red;
}

ol li{
    list-style-type: lower-greek;
    color: blue;
}

li:nth-child(2n-1){
    color: green;
}
