Comments on [F2U HTML] Modular User All Comments

How do you change the color of the main colors I want to change the background color to another and change the blue but I can’t find where the background color it 

hi! you can change the text/icon color with color: #000000; and the background color with background: #000000;, just replace #000000 with the color you want. both of these go in the style="" attribute.

for example, like this: <div class="col-12 card bg-faded mt-2 p-3" style="background: #000000;">...</div>
or this: <i class="fa-duotone fa-cloud-bolt" style="color: #000000;"></i>

Thank you!!