-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
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
Implement dark mode #229
Implement dark mode #229
Conversation
Thank you very much for working on this. This looks great, so far. I would appreciate if we could find a way to make the logo look better. Maybe a monochrome version with some colors inverted? |
You can preview a monochrome version using document.getElementById('insect-logo').querySelector('defs').remove() a version with a white shadow using document.getElementById('insect-logo').style.color = 'black'
document.getElementById('insect-logo').style.filter = 'drop-shadow(0 0 3px #ECF0F1)' and a hybrid version using document.getElementById('insect-logo').querySelector('defs').remove()
document.getElementById('insect-logo').style.color = 'black'
document.getElementById('insect-logo').style.filter = 'drop-shadow(0 0 10px #ECF0F1)' and simply pasting those into the console and maybe play around with the pixel value for the drop-shadow. |
I was thinking about actually modifying the original logo in Inkscape (or similar) to create a dark theme version. But I actually quite like the CSS-modified hybrid version. What do you think? Thank you for the different variants! |
I have no strong opinion about this. Creating a new logo would certainly also work (even css only using |
Ok, let's go with the "hybrid version" for now 👍 |
Done :D |
Awesome, thank you very much for the update! |
This is a simple draft of a dark mode and fixes #227.
A few things which still might need improvement:
filter: drop-shadow(0 0 1px white)