I’ve set my micro.blog hosted blog to adapt to iOS’s Dark Mode, but my bold text is staying black. Anyone have suggestions of what CSS I should add to change this?

I’ve set my micro.blog hosted blog to adapt to iOS’s Dark Mode, but my bold text is staying black. Anyone have suggestions of what CSS I should add to change this?

@Gabz does this look correct?
css
@media (prefers-color-scheme: dark) {
  body {
        color: white;
        background: black;
        }
  nav.main-nav {
        background: black;
        }
  a, nav.main-nav a, #footer a, #post-nav a, p a, ul a, ol a, h1, h2, h3 {
        color: white;
        }
  strong {
        color: #ffffff !important;
        }
}
@craigmcclellan yes, that’s how mine is. I just switch back to Marfa with that setup in case you wanted to use the inspector a check my css
@Gabz It’s working! Thanks for your help!