You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using this kit for my blog with very minimal styling (basically list-style and a single bg-color).
Most of the time it looks correct.
But under some conditions the contrast of text/background goes to almost zero (notice the invisible titles?)
I can get this to happen by toggling the "night mode" option on Firefox iOS. Some others have reported it in a variety of conditions that I cannot reproduce.
What's going on here? Is this from styling in deno_blog or gfm? I can't find anything that would do this, but its consistent.
The text was updated successfully, but these errors were encountered:
It looks like this is caused by the theme: 'dark' setting when it conflicts with the Browsers theme selection. The body ends up looking like this when the browser is in light mode.
div class="mt-8 markdown-body" data-color-mode="dark" data-light-theme="light" data-dark-theme="dark"
When I remove the blogs theme override, it looks like this
div class="mt-8 markdown-body" data-color-mode="auto" data-light-theme="light" data-dark-theme="dark"
I'm using this kit for my blog with very minimal styling (basically
list-style
and a singlebg-color
).Most of the time it looks correct.
But under some conditions the contrast of text/background goes to almost zero (notice the invisible titles?)
I can get this to happen by toggling the "night mode" option on Firefox iOS. Some others have reported it in a variety of conditions that I cannot reproduce.
What's going on here? Is this from styling in deno_blog or gfm? I can't find anything that would do this, but its consistent.
The text was updated successfully, but these errors were encountered: