summaryrefslogtreecommitdiff
path: root/desktop-themes
diff options
context:
space:
mode:
authorraveit <[email protected]>2013-04-11 09:34:56 +0200
committerraveit <[email protected]>2013-04-11 09:34:56 +0200
commit97700a95e1aa118133d4e87aeafadcbca73b1049 (patch)
tree64bd9c5a6759cc5bcfb8f867a6c56c2b68e7bc02 /desktop-themes
parentacc9a4008cc2caba9856a94cb1ccbf59b24b4a97 (diff)
downloadmate-themes-97700a95e1aa118133d4e87aeafadcbca73b1049.tar.bz2
mate-themes-97700a95e1aa118133d4e87aeafadcbca73b1049.tar.xz
update GreenLaguna README
Diffstat (limited to 'desktop-themes')
-rw-r--r--desktop-themes/GreenLaguna/README49
1 files changed, 49 insertions, 0 deletions
diff --git a/desktop-themes/GreenLaguna/README b/desktop-themes/GreenLaguna/README
index e7fbd2f9..84828505 100644
--- a/desktop-themes/GreenLaguna/README
+++ b/desktop-themes/GreenLaguna/README
@@ -12,3 +12,52 @@ select {
input {
color: #000 !important;
}
+
+
+There is a posibillity for changing the background color of the panel for dark ambiance,
+useful for a transparency panel with a dark DE background,
+Edit the gtkrc file in the gtk-2.0 folder.
+
+change those lines
+
+style "misc-panel"
+{
+ engine "murrine"
+ {
+ rgba = FALSE
+ roundness=3
+ }
+
+ bg[NORMAL] = "#C2D0BD" # for the (light) Ambiance background
+# bg[NORMAL] = "#5A6C5F" # for the (dark) Ambiance background
+ bg[PRELIGHT] = "#AEC6A6" #for the (light) Ambiance background
+# bg[PRELIGHT] = "#C7E3BE" #for the (dark) Ambiance background
+ bg[SELECTED] = shade (0.6, @bg_color) # to be compatible with menus
+# bg[SELECTED] = shade (1.08, @bg_color) # to be compatible with menus (dark) Ambiance background
+ fg[NORMAL] = "#000000" # for light panel
+# fg[NORMAL] = "#FFFFFF" # for dark panel
+# fg[PRELIGHT] = "#000000" # for dark panel
+# fg[SELECTED] = "#000000" # for dark panel
+
+to this ones
+
+style "misc-panel"
+{
+ engine "murrine"
+ {
+ rgba = FALSE
+ roundness=3
+ }
+
+# bg[NORMAL] = "#C2D0BD" # for the (light) Ambiance background
+ bg[NORMAL] = "#5A6C5F" # for the (dark) Ambiance background
+# bg[PRELIGHT] = "#AEC6A6" #for the (light) Ambiance background
+ bg[PRELIGHT] = "#C7E3BE" #for the (dark) Ambiance background
+# bg[SELECTED] = shade (0.6, @bg_color) # to be compatible with menus (light) Ambiance background
+ bg[SELECTED] = shade (1.08, @bg_color) # to be compatible with menus (dark) Ambiance background
+# fg[NORMAL] = "#000000" # for light panel
+ fg[NORMAL] = "#FFFFFF" # for dark panel
+ fg[PRELIGHT] = "#000000" # for dark panel
+ fg[SELECTED] = "#000000" # for dark panel
+
+Have fun.