-
Notifications
You must be signed in to change notification settings - Fork 11
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
fix(highlights): avoid NONE backgrounds for custom groups #50
Conversation
This does look more future proof indeed 👍 |
These custom groups replicate shade of e.g. bg3 on top of bg (which will no longer be NONE), so I think it should be fine aesthetically, or am I missing something? |
e9d819e
to
f260167
Compare
Those buttons are now barely visible: Compare with #48 |
Problem is, we lose control of the bg when it's transparent, so this will depend a lot on the strength of transparency and how light the wallpaper is. For people who use transparency with light wallpapers I would just suggest lightening the background color, or just the shades, which is/will be possible on v1. |
Nothing is preventing from having a default in Even if it's not possible to control what the background will look like, it should be safe to assume that a majority of people use a high opacity (92% in my screenshot), because whoever has ever tried lowering the opacity further knows how unreadable the text becomes on mixed backgrounds. Also, I am using one of macOS' default wallpapers, which is fairly bright already. |
I see, so it's probably safe to assume that when transparent background is enabled, the background will be brighter (because most wallpapers are brighter than the background of As to modification of specific plugins to avoid this problem, I still think my earlier statement still stands:
|
I'm not in a good position to provide meaningful guidance here since I have rarely used transparent terminals, especially not for any serious work. You are the best person to decide what amount of engineering makes sense based on how many UI-oriented plugin customizations may be added in the future. I just wanted to share some observations about what can be expected about the background color in general, and the fact that making UI elements too dark in that mode feels like a degraded experience (to me at least). |
@antoineco @ramojus Thank you guys for the fixes! |
f260167
to
7c9e03c
Compare
@antoineco thanks for the observations! |
My solution for #47, alternative to #48
I think this way is more future proof, when new plugins use custom groups, we won't have to worry about this issue anymore. Also nicer that the fix is just in one module.
Fixes #47