halfmoonui / halfmoon

Halfmoon is a highly customizable, drop-in Bootstrap replacement. It comes with three built-in core themes, with dark mode support for all themes and components.
https://www.gethalfmoon.com
MIT License
3.04k stars 118 forks source link

[dark mode] wrong color for <optgroup> #83

Open Kubina1232 opened 3 years ago

Kubina1232 commented 3 years ago

Hi,

tag optgroup has wrong text color in dark mode.

My code:

<div class="input-group" >
     <div class="input-group-prepend">
         <span class="input-group-text">Pack:</span>
     </div>
     <select class="form-control" name="pack">
          <optgroup label="Enabled">
                <option value="7">Krabice 25x250g</option>                                                                                                                                                                                                                                                        
          </optgroup>
          <optgroup label="Disabled">
                <option disabled="" value="5">Pytlík 1x 250g</option>
          </optgroup>
     </select>
</div>

Images: wrong in dark correct in light

Thank you for this amazing css framework!

halfmoonui commented 3 years ago

Sorry for the late response, and thanks for bringing this up. I missed the <optgroup> tag in my styling. Will fix it ASAP. Can I ask though, which browser are you using?

Kubina1232 commented 3 years ago

I am using Chrome...