-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Improve Dark Mode #1969
Comments
related #733 |
also an option to use the system theme |
Yeah, I would appreciate an option to synchronize the UI to the system theme. For reference, Electron's native-theme API should work fine for this and supports Linux/Windows/macOS. |
@mifi I have a little suggestion: add style You can use Another screen example: Additionally there is .selector {
background-color: light-dark(var(--light-background), var(--dark-background));
color: light-dark(var(--light-text), var(--dark-text));
} Currently lossless-cut use Chrome version 118, so it is not supported. But if you upgrade Electron with a Chrome version 123 or newer, you can easily use it. |
Well, it is also possible to manually restyle scrollbars with CSS instead of relying on color-scheme like that (Chrome-only): *::-webkit-scrollbar {
width: 8px;
height: 8px;
background-color: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: #8888;
}
*::-webkit-scrollbar:hover {
background-color: #8883;
} |
I've now added |
according to the user's dark/light setting in the app #1969
The fewer issues I have to read, the more new features I will have time to implement, so I ask that you please try these things first
Description
some UI still use white background, such as the Merge Files page, the scrollbar of "batch files" pannel (at left).
please improve the dark mode.
The text was updated successfully, but these errors were encountered: