ul {
    list-style-type:square;

}
ul li {
    background-color: rgb(60, 13, 172);
    list-style-position: outside;
}
ul li:nth-child(even){
    background-color: rgb(134, 121, 0);
}
ol {
    list-style: lower-roman;
    background-color: rgb(101, 173, 101);
    list-style-position: inside;
}

ol li{
    background-color: rgb(163, 206, 255);
}

ol li:nth-child(odd){
    background-color: rgb(189, 120, 202);
}