theme: Invert GimpSpinScale slider colors in dark mode

While the slider colors match GIMP 2.10's light and
grey themes, the colors in 3.0 were inverted compared
to 2.10's dark mode. This patch inverts the dark mode
colors to better match 2.10's version.
This commit is contained in:
Alx Sa 2025-03-20 03:16:54 +00:00
parent 47224ba1a6
commit a5c35fb244
3 changed files with 12 additions and 12 deletions

View file

@ -33,3 +33,12 @@ button:not(.flat) {
button:not(.flat):hover {
box-shadow: none;
}
/* Define GimpSpinScale slider colors */
GimpSpinScale entry {
background-color: @widget-bg-color;
}
GimpSpinScale entry progress {
background-color: @hover-color;
}

View file

@ -30,12 +30,3 @@ paned.vertical > separator {
button:not(.flat) {
box-shadow: 0 1px @extreme-bg-color inset;
}
/* Define GimpSpinScale slider colors */
GimpSpinScale entry {
background-color: @extreme-bg-color;
}
GimpSpinScale entry progress {
background-color: @widget-bg-color;
}

View file

@ -506,16 +506,16 @@ GimpSpinScale {
}
GimpSpinScale entry {
padding: 0px 8px 0px 5px;
background-color: @stronger-border-color;
background-color: @extreme-bg-color;
border-color: @edge-border-color;
border-radius: 5px 0px 0px 5px;
border-right-width: 0px;
box-shadow: none;
padding: 0px 8px 0px 5px;
}
GimpSpinScale entry progress {
background-color: @extreme-bg-color;
background-color: @widget-bg-color;
background-image: none;
border-width: 0px;
border-radius: 3px 0px 0px 3px;