ul li{
    list-style-type: square;
    color: blue;
}

ol li{
    list-style-type: lower-roman;
    color: orange;
}

li :nth-child(3n-1){
    color: green;
}