-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add light theme #35
Add light theme #35
Conversation
Hey @Nargonath thanks for making the local highlight function! This was something @pineapplegiant and I have discussed for some time now, though we never got to it. I'm glad you did! Regarding rewriting the entire
One improvement for the highlight function necessary is taking arguments for
I'll test out your code and merge it with the Thanks! |
Alright thank you @jinh0 for the feedback. I'll add your suggestion to my MR. |
Hey @Nargonath , sorry for being late. I merged it, adding the Thanks for the pull request! Looking forward to working more with you! |
I didn't think you'd want to merge this for now. Good call for the custom variable trigger. I'll open a new PR once I make more progress on the light theme then. |
This PR is an attempt to fix #24.
To easily toggle between the light/dark background I believe we need to rewrite the
colors/spaceduck.vim
file and change its structure. For now I only included an example of how I intend to do it. I believe we'll need to removehi Spaceduck
statements in the&background
if blocks since they won't be needed anymore once we start using the palette dictionary. I added a custom function to keep thehighlight
call DRY. I also just changed thehi Normal
call to showcase the function use case.