We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These days developers use dark/light/system modes. If you have fill="#fff", you have the white bg when the mode is dark.
fill="#fff"
For example, bluesky has it.
// this line <path d="m0 0H512V512H0" fill="#fff" /> // to <path d="m0 0H512V512H0" fill="none" /> // or <path d="m0 0H512V512H0" fill="transparent" />
The text was updated successfully, but these errors were encountered:
That's an interesting idea. Could you please show a screenshot comparing them?
Sorry, something went wrong.
The following screenshots are on the dark mode.
With fill="none"
fill="none"
With fill="#fff"
Looks good. Are there any icons where the background colour forms part of the logo?
There are many SVG icons have <path d="m0 0H512V512H0" fill="#fff" />.
<path d="m0 0H512V512H0" fill="#fff" />
https://github.com/edent/SuperTinyIcons/tree/master/images/svg
You can see all the icons at https://svelte-supertiny.codewithshin.com/icons. You will find may icons have white background.
No branches or pull requests
These days developers use dark/light/system modes. If you have
fill="#fff"
, you have the white bg when the mode is dark.For example, bluesky has it.
The text was updated successfully, but these errors were encountered: