The Default theme may have been a bit too dark. Instead let's have it a tiny bit lighter (and also foreground color a bit less white). For now, the old "Default" dark theme doesn't disappear totally and is moved to a "Darker" theme as we have been discussing and wondering on whether this is prefered by some people (it is). Aryeom also thought a darker theme may be a good idea. Moreover Liam actually thought that losing some of the contrast (especially with the text a tiny bit less white now) is not desired in his case where eyes may not be as sharp as they used to. Therefore a "High Contrast" theme may be needed. Aryeom also suggested that sliders to choose colors could be a much more generic solution, which might be possible yet would require more ugly hacks generating on-the-fly theme changes (we do something similar for dark theme choice already). This is all work-in-progress and a result from Wilber Week 2023 work.
25 lines
691 B
CSS
25 lines
691 B
CSS
/* The specific light theme interface styles for GIMP 3.0 */
|
|
/* Theme specific colors are defined in gimp-dark.css */
|
|
|
|
/* Hint for debugging themes:
|
|
* first enable the GTK inspector with
|
|
gsettings set org.gtk.Settings.Debug enable-inspector-keybinding true
|
|
* then (after restarting GIMP) call it up with ctrl+shift+i
|
|
* or from GIMP's UI: File > Debug > Start GtkInspector
|
|
*/
|
|
|
|
@import url("common.css");
|
|
|
|
/*
|
|
* Paned separator handles
|
|
*/
|
|
paned.horizontal > separator {
|
|
background-image: url("ui/separator-handle-v-dark.svg");
|
|
background-color: @bg-color;
|
|
}
|
|
|
|
paned.vertical > separator {
|
|
background-image: url("ui/separator-handle-h-dark.svg");
|
|
background-color: @bg-color;
|
|
}
|
|
|