Last active
June 28, 2025 13:45
-
-
Save itsmaxsmith/ef88c155e445707b021bbbe6cea53648 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64"> | |
<style> | |
/* Default = Light mode */ | |
path { fill:#37352F; } | |
/* Override in Dark mode */ | |
@media (prefers-color-scheme: dark) { | |
path { fill:#FFFFFF; } | |
} | |
</style> | |
<path d="M4 8h56L40 32v16l-16 8V32L4 8z"/> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment