<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ul {
    list-style: var(--list-style, var(--style-unordered-list));
}

ul &gt; li::marker {
    color: var(--color-unordered-list-marker);
    font: var(--font-unordered-list-marker);
    display: block;
}

ul:not(.noindent) {
    margin-left: var(--indent-unordered-list);
}

ol {
    list-style: var(--list-style, var(--style-ordered-list));
}

ol &gt; li::marker {
    color: var(--color-ordered-list-marker);
    font: var(--font-ordered-list-marker);
    display: block;
}

ol:not(.noindent, .toast-container) {
    margin-left: var(--indent-ordered-list);
}
</pre></body></html>