mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
themes: removing "Darker" theme.
I believe there is a real use case for darker or lighter themes, but this particular theme is not particularly maintained and has no light variant (or to be accurate: the light variant is just a link to the "Default" one). If someone is interested in such themes, we'll welcome contributions to revive a new theme which should have at the very least both a light and dark version, and we could name it "Contrast" (rather than "Darker" which focuses on a dark variant only). I think it's better to do it this way rather than releasing with a half-done job.
This commit is contained in:
parent
87a3073b04
commit
495523db39
4 changed files with 0 additions and 147 deletions
|
@ -1,64 +0,0 @@
|
||||||
/* Dark variant for the Default theme for GIMP 3.0 */
|
|
||||||
|
|
||||||
/* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Basic foreground, background and border colors. */
|
|
||||||
@define-color fg-color white;
|
|
||||||
@define-color bg-color rgb(30,30,30);
|
|
||||||
@define-color border-color rgb(35,35,35);
|
|
||||||
|
|
||||||
/********* Variants for foreground colors *********/
|
|
||||||
|
|
||||||
/* In places where we want not as strongly contrasted text. */
|
|
||||||
@define-color dimmed-fg-color rgb(155,155,155);
|
|
||||||
/* Disabled items, such as disabled actions in menus. */
|
|
||||||
@define-color disabled-fg-color rgb(145,145,145);
|
|
||||||
/* Disabled buttons are dimmed even more (text needs to still be
|
|
||||||
* readable, but buttons design are usually enough. */
|
|
||||||
@define-color disabled-button-color rgb(50,50,50);
|
|
||||||
|
|
||||||
/********* Variants for background colors *********/
|
|
||||||
|
|
||||||
/* Background color for hovered items to "stick out". */
|
|
||||||
@define-color hover-color rgb(5,5,5);
|
|
||||||
/* Background color when we want widgets-in-widgets to differenciate. It
|
|
||||||
* will usually be "less extreme", i.e. darker on a light theme, or
|
|
||||||
* lighter on a dark theme.
|
|
||||||
*/
|
|
||||||
@define-color widget-bg-color rgb(35,35,35);
|
|
||||||
/* Color for selected items, in particular when their usual background
|
|
||||||
* color is @widget-bg-color or @bg-color. It will usually be ligher on
|
|
||||||
* a light theme, or darker on a dark theme.
|
|
||||||
*/
|
|
||||||
@define-color selected-color rgb(5,5,5);
|
|
||||||
|
|
||||||
/* Background color more extreme in the theme tendency, i.e. darker on a
|
|
||||||
* dark theme, ligther on a light theme. */
|
|
||||||
@define-color extreme-bg-color rgb(20,20,20);
|
|
||||||
/* Color for a selected item to "stick out" when @extreme-bg-color is
|
|
||||||
* used. It will usually be darker than @bg-color on a light theme,
|
|
||||||
* lighter on a dark theme.
|
|
||||||
*/
|
|
||||||
@define-color extreme-selected-color rgb(40,40,40);
|
|
||||||
|
|
||||||
/********* Variants for border colors *********/
|
|
||||||
|
|
||||||
@define-color strong-border-color rgb(50,50,50);
|
|
||||||
@define-color stronger-border-color rgb(75,75,75);
|
|
||||||
/* Border color for the edge of certain widgets. This needs
|
|
||||||
* to be dark on light theme and very dark on dark themes */
|
|
||||||
@define-color edge-border-color rgb(26,26,26);
|
|
||||||
|
|
||||||
/********* Colors for special cases *********/
|
|
||||||
|
|
||||||
@define-color scrollbar-slider-color rgb(140,140,140);
|
|
||||||
@define-color scrollbar-trough-color rgb(5,5,5);
|
|
||||||
|
|
||||||
@define-color ruler-color rgba(35,35,35,0.3);
|
|
||||||
|
|
||||||
@import url("../Default/common-dark.css");
|
|
|
@ -1,76 +0,0 @@
|
||||||
/* Light variant for the Default theme for GIMP 3.0 */
|
|
||||||
|
|
||||||
/* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Basic foreground, background and border colors. */
|
|
||||||
@define-color fg-color black;
|
|
||||||
@define-color bg-color rgb(235,235,235);
|
|
||||||
@define-color border-color rgb(220,220,220);
|
|
||||||
|
|
||||||
/********* Variants for foreground colors *********/
|
|
||||||
|
|
||||||
/* In places where we want not as strongly contrasted text. */
|
|
||||||
@define-color dimmed-fg-color rgb(100,100,100);
|
|
||||||
/* Disabled items, such as disabled actions in menus. */
|
|
||||||
@define-color disabled-fg-color rgb(110,110,110);
|
|
||||||
/* Disabled buttons are dimmed even more (text needs to still be
|
|
||||||
* readable, but buttons design are usually enough. */
|
|
||||||
@define-color disabled-button-color rgb(200,200,200);
|
|
||||||
|
|
||||||
/********* Variants for background colors *********/
|
|
||||||
|
|
||||||
/* Background color for hovered items to "stick out". */
|
|
||||||
@define-color hover-color rgb(250,250,250);
|
|
||||||
/* Background color when we want widgets-in-widgets to differenciate. It
|
|
||||||
* will usually be "less extreme", i.e. darker on a light theme, or
|
|
||||||
* lighter on a dark theme.
|
|
||||||
*/
|
|
||||||
@define-color widget-bg-color rgb(220,220,220);
|
|
||||||
/* Color for selected items, in particular when their usual background
|
|
||||||
* color is @widget-bg-color or @bg-color. It will usually be ligher on
|
|
||||||
* a light theme, or darker on a dark theme.
|
|
||||||
*/
|
|
||||||
@define-color selected-color rgb(250,250,250);
|
|
||||||
|
|
||||||
/* Background color more extreme in the theme tendency, i.e. darker on a
|
|
||||||
* dark theme, ligther on a light theme. */
|
|
||||||
@define-color extreme-bg-color rgb(250,250,250);
|
|
||||||
/* Color for a selected item to "stick out" when @extreme-bg-color is
|
|
||||||
* used. It will usually be darker than @bg-color on a light theme,
|
|
||||||
* ligher on a dark theme.
|
|
||||||
*/
|
|
||||||
@define-color extreme-selected-color rgb(220,220,220);
|
|
||||||
|
|
||||||
/********* Variants for border colors *********/
|
|
||||||
|
|
||||||
@define-color strong-border-color rgb(200,200,200);
|
|
||||||
@define-color stronger-border-color rgb(185,185,185);
|
|
||||||
/* Border color for the edge of certain widgets. This needs
|
|
||||||
* to be dark on light theme and very dark on dark themes */
|
|
||||||
@define-color edge-border-color rgb(185,185,185);
|
|
||||||
|
|
||||||
/********* Colors for special cases *********/
|
|
||||||
|
|
||||||
@define-color scrollbar-slider-color rgb(110,110,110);
|
|
||||||
@define-color scrollbar-trough-color rgb(250,250,250);
|
|
||||||
|
|
||||||
@define-color ruler-color rgba(220,220,220,0.3);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Paned separator handles
|
|
||||||
*/
|
|
||||||
paned.horizontal > separator {
|
|
||||||
background-image: url("../Default/ui/separator-handle-v.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
paned.vertical > separator {
|
|
||||||
background-image: url("../Default/ui/separator-handle-h.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@import url("../Default/common-light.css");
|
|
|
@ -1,6 +0,0 @@
|
||||||
files = [
|
|
||||||
'gimp.css', 'gimp-dark.css',
|
|
||||||
]
|
|
||||||
|
|
||||||
install_data(files,
|
|
||||||
install_dir: gimpdatadir / 'themes' / 'Darker')
|
|
|
@ -1,5 +1,4 @@
|
||||||
subdir('Default')
|
subdir('Default')
|
||||||
subdir('Darker')
|
|
||||||
|
|
||||||
themes = [
|
themes = [
|
||||||
'System',
|
'System',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue