-
Notifications
You must be signed in to change notification settings - Fork 13
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
Issues with light theme #92
Comments
You can modify the template used for picking the colors, but that is not really a solution. I don't quite remember how the .cache/wal/colors.json file look - does it include anything that would indicate that it is a "light" theme? If not, I guess pywalfox could check the brightness of some colors to try and figure out whether it is a light or dark theme. |
Wow thanks for the fast reaction to this one! As for whether colors.json indicates which color scheme is in use, unfortunately it does not :( {
"wallpaper": "/path/to/my/image.png",
"alpha": "100",
"special": {
"background": "#f9f9f9",
"foreground": "#3e3e3e",
"cursor": "#3e3e3e"
},
"colors": {
"color0": "#f9f9f9",
"color1": "#6e535d",
"color2": "#93949f",
"color3": "#bfa2ab",
"color4": "#a8bcc8",
"color5": "#ccabc3",
"color6": "#cdbcb3",
"color7": "#3e3e3e",
"color8": "#bababa",
"color9": "#6e535d",
"color10": "#93949f",
"color11": "#bfa2ab",
"color12": "#a8bcc8",
"color13": "#ccabc3",
"color14": "#cdbcb3",
"color15": "#3e3e3e"
}
} I also created dylanaraps/pywal#685, with the hopes that maybe we could standardize this somehow, either by including both color schemes in colors.json or not recommending consumers to have a dark/light option in each application.
Is there a reason you need to know which theme is active ? |
I think the colors that should be used when theming the browser is different for light and dark mode. Using the same color indicies for light mode results in a very ugly looking theme, which is why I do some manual adjustments to the colors in the code when light mode is activated. I haven't looked at this in a long time, so I might be wrong though. |
Makes sense, I can try taking a look at this in the future and check which colors the terminal and vscode use for text and focus text, thanks for all the info! |
Any progress on this? I am experiencing the same issue. |
Yep, same thing, the only way I see now is forking it. |
@Packjackisback or propose a PR |
@Ranguna, this repo does not seem to be maintained anymore, unfortunately. So a fork would be best. |
Hmmm maybe |
Yes, I am just busy with other stuff. PRs are appreciated. |
Good to know, thanks! |
When using pywal to generate a light theme and applying it in firefox, some text becomes unreadable:
The active tab:
The extensions itself:
The reason I want to explicitly use the
light
option thoughwal
cli is because some tools like the terminal and vscode only change to thelight
option when generating the colors with that option.Changing to the light option on the extensions makes things a bit more unreadable:
Is there any way to make this extensions compatible with colors generated with the
light
cli option ?The text was updated successfully, but these errors were encountered: