aboutsummaryrefslogtreecommitdiff
path: root/spectrogram.c
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-08-15 23:27:19 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-08-15 23:27:19 +0000
commitdc0772285d66f582510a14011a41039ebb805011 (patch)
tree8562c6c9c3293cb1c4f0a8ed90b39d58316118e4 /spectrogram.c
parent3af454f2ca99043d9e0a94f5f769206f60d45f9a (diff)
adjust colors
Diffstat (limited to 'spectrogram.c')
-rw-r--r--spectrogram.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/spectrogram.c b/spectrogram.c
index d22b959..cbfb856 100644
--- a/spectrogram.c
+++ b/spectrogram.c
@@ -279,7 +279,7 @@ init_panel(Display *d, Window win, int x, int y, int w, int h, int mirror)
p->mirror = mirror;
struct palette p_spectr = {
- { 0.30, 0.50, 0.75 },
+ { 0.30, 0.30, 0.50 },
{ 0.00, 1.00, 1.00 }
};
@@ -288,8 +288,8 @@ init_panel(Display *d, Window win, int x, int y, int w, int h, int mirror)
free(palette);
struct palette p_shadow = {
- { 0.30, 0.50, 0.15 },
- { 0.00, 1.00, 0.30 }
+ { 0.30, 0.30, 0.10 },
+ { 0.00, 1.00, 0.20 }
};
palette = init_palette(d, &p_shadow, p->maxval, LIN_SCALE);