From 14a7e310fc423c1927cf61e927c8fa1b90fa845b Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Fri, 28 Aug 2009 11:47:19 -0400 Subject: [PATCH] Make the gradient on the top panel the same as the "dash" The previous top color was a bit too bright. --- js/ui/panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/panel.js b/js/ui/panel.js index b8a3f66a3..e01510999 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -23,7 +23,7 @@ const DEFAULT_PADDING = 4; const PANEL_ICON_SIZE = 24; const BACKGROUND_TOP = new Clutter.Color(); -BACKGROUND_TOP.from_pixel(0x414141ff); +BACKGROUND_TOP.from_pixel(0x161616ff); const BACKGROUND_BOTTOM = new Clutter.Color(); BACKGROUND_BOTTOM.from_pixel(0x000000ff);