-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Is your feature request related to a problem? Please describe.
The logo in README.md has a very low contrast ratio (1.37:1) for dark mode users.
Describe the solution you'd like
We could add a dark mode friendly version of the image to the repository and conditionally load the correct one, using:
<picture>
<source media="(prefers-color-scheme: dark)" srcset="docs/images/logo-dark-mode.png">
<source media="(prefers-color-scheme: light)" srcset="docs/images/logo.png">
<img alt="Badrobot Logo" src="docs/images/logo.png">
</picture>
Describe alternatives you've considered
Update logo to look good in both modes.
Additional context
Metadata
Metadata
Assignees
Labels
No labels