ul.list {}

ul.list li {
    position: relative;
    padding-left: 15px;
}

ul.list li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color);
    display: inline-block;
    left: 0;
    top: 6px;
    position: absolute;
    border-radius: 50%;
}

ul.list.list-square li:before {
    border-radius: 0;
}

ul.list.list-line li:before {
    height: 2px;
    border-radius: 0;
    top: 9px;
}

ul.list.list-mono li:before {
   background:var(--gray);
}