ul{
    background-color: red;
    list-style-type: square;
}
ol{
    list-style-type: lower-roman;
    background-color: blue;
}
ul li:nth-child(2n-1){
    background-color: pink;
}
ol li{
    list-style-image: url("../img/lista.png");
}