Olive – How to Change Numbered List Colors
Currently, there is no option to style the numbers when using a numbered list block. You'll need to add a little CSS to change the colors.
Copy + paste the following CSS Snippet into Appearance > Customize > Additional CSS
/* Numbered List Color */
.single-content ol.wp-block-list li::before {
background-color: #cccccc !important;
}
Just change #cccccc to whatever hex code color you'd like! Save your changes.