I saw your post on the Discord and was a bit confused, glad I looked on the forums first!
This is something specific I’ve done with my theme to change the colours of the list items. I couldn’t figure out how to style the list numbers directly, so I set list-style: none; and added my own ::before elements to replace the numbers.
If you’re willing to give up the blue glowy numbers in favour of the APA styling, just remove the whole section marked /* numbered lists */ (around line 189-211). This bit:
/* numbered lists */
ol {list-style: none; counter-reset: li}
ol > li {
counter-increment: li;
}
ol > li:not(.task-list-item)::before,
ul ol > li:not(.task-list-item)::before,
ul ul ol > li:not(.task-list-item)::before,
ul ul ul ol > li:not(.task-list-item)::before {
content: "." counter(li);
color: var(--accent-2);
font-weight:normal;
display: inline-block;
width: 1em;
margin-left: -1.5em;
margin-right: 0.5em;
text-align: right;
direction: rtl;
word-wrap: none;
overflow: visible;
word-break: keep-all;
text-shadow: 0 0 0.5em var(--accent-2);
}