craigmcclellan
craigmcclellan

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?

|
Embed
Progress spinner
Gabz
Gabz

@craigmcclellan I had the same issue, added this:

strong { color: #ffffff !important;

|
Embed
Progress spinner
Gabz
Gabz

@craigmcclellan dang it! that didn't formated well

|
Embed
Progress spinner
In reply to
craigmcclellan
craigmcclellan

@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; } }

|
Embed
Progress spinner
Gabz
Gabz

@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

|
Embed
Progress spinner
craigmcclellan
craigmcclellan

@Gabz It’s working! Thanks for your help!

|
Embed
Progress spinner
Gabz
Gabz

@craigmcclellan Awesome !!! glad I could help!

|
Embed
Progress spinner