Override GIMP Dark Mode
This commit is contained in:
parent
0c5bf60f06
commit
dcde3165bc
2 changed files with 52 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# GIMP gimprc
|
||||
#
|
||||
#
|
||||
# This is your personal gimprc file. Any variable defined in this file takes
|
||||
# precedence over the value defined in the system-wide gimprc:
|
||||
# /app/etc/gimp/2.0/gimprc
|
||||
|
|
@ -41,8 +41,8 @@
|
|||
(snap-to-grid no)
|
||||
(snap-to-canvas no)
|
||||
(snap-to-path no)
|
||||
(padding-mode default)
|
||||
(padding-color (color-rgb 1 1 1))
|
||||
(padding-mode custom)
|
||||
(padding-color (color-rgb 0.098039215686274508 0.098039215686274508 0.098039215686274508))
|
||||
(padding-in-show-all no))
|
||||
(filter-tool-show-color-options yes)
|
||||
(toolbox-wilber no)
|
||||
|
|
|
|||
|
|
@ -12,6 +12,55 @@
|
|||
#
|
||||
# You can add your own GIMP-specific GTK styles here.
|
||||
|
||||
# Override GIMP Dark Mode
|
||||
gtk-font-name = "Lucida Grande"
|
||||
|
||||
style "gimp-dark-default-style"
|
||||
{
|
||||
font_name = "Lucida Grande"
|
||||
|
||||
# Color Variables
|
||||
color["clr1"] = "#DDDDDD"
|
||||
color["clr2"] = "#FFFFFF"
|
||||
color["clr3"] = "#C1C1C1"
|
||||
color["clr4"] = "#383838"
|
||||
color["clr5"] = "#555555"
|
||||
color["clr6"] = "#828282"
|
||||
color["clr7"] = "#3B3B3B"
|
||||
color["clr8"] = "#383838"
|
||||
color["clr9"] = "#353535"
|
||||
color["clrA"] = "#303030"
|
||||
|
||||
# Foreground
|
||||
fg[NORMAL] = @clr1
|
||||
fg[PRELIGHT] = @clr2
|
||||
fg[ACTIVE] = @clr3
|
||||
fg[SELECTED] = @clr1
|
||||
fg[INSENSITIVE] = @clr3
|
||||
|
||||
# Background
|
||||
bg[NORMAL] = @clr9
|
||||
bg[PRELIGHT] = @clr7
|
||||
bg[ACTIVE] = @clr4
|
||||
bg[SELECTED] = @clr5
|
||||
bg[INSENSITIVE] = @clr5
|
||||
|
||||
# Base Color
|
||||
base[NORMAL] = @clrA
|
||||
base[PRELIGHT] = @clr7
|
||||
base[ACTIVE] = @clr7
|
||||
base[SELECTED] = @clr1
|
||||
base[INSENSITIVE] = @clr8
|
||||
|
||||
# Text Color
|
||||
text[NORMAL] = @clr1
|
||||
text[PRELIGHT] = @clr1
|
||||
text[ACTIVE] = @clr1
|
||||
text[SELECTED] = @clr7
|
||||
text[INSENSITIVE] = @clr9
|
||||
}
|
||||
|
||||
# END OF GIMP DARK MODE Override
|
||||
|
||||
#
|
||||
# Adjust the size of previews in plug-in dialogs:
|
||||
|
|
|
|||
Loading…
Reference in a new issue