First off this is the code I am using on the HTML and CSS sides:
progress {
color-scheme: light dark;
accent-color: RGBA(30, 170, 255, 1);
}
<p> Progress in life goals (5%)
<progress id="progressbar1" value="5" max="100"></progress>
</p>
For my problem, the scheme setting changes nothing and the accent only affects the loading progress color.
My loading bar currently looks round with a blue progress bar and black background when what I want is a light grey background, but when I try to specify a background color the bar changes to green with a grey background and rectangular shape even when I try something else like a blue background. How do I fix this? Both CSS and HTML code check out as valid according to W3.org. I am using the Microsoft Edge browser to test my code currently, while I would like whatever solution works to function on most browsers I do not care if it works on Internet Explorer.
For example this: Insufficient version vs this: Unwanted version
I have tried using different backgrounds in the CSS file, adding transparency, changing the color scheme property, defining the loading bar shape, and using internal style tags instead of an external file for the CSS code.