summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-01-19 06:20:02 +0000
committerThomas White <taw@physics.org>2020-01-19 06:20:02 +0000
commit7056fc3a49be56678ecdd161940bc59a1b92eb73 (patch)
treefa6638d5de9293a2aa3d41b429ef2b5491c39c68
parent1e2776301da2bb65182fe667681d5c0c5f881ff6 (diff)
Make background brighter
-rw-r--r--glitchyclock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glitchyclock.c b/glitchyclock.c
index 5061cc8..8df776e 100644
--- a/glitchyclock.c
+++ b/glitchyclock.c
@@ -252,7 +252,7 @@ static gboolean draw_sig(GtkWidget *widget, cairo_t *cr, struct glitchyclock *gc
cairo_scale(cr, gc->clock_w/lw, gc->clock_h/lh);
pango_cairo_update_layout(cr, layout);
- cairo_set_source_rgb(cr, gc->brightness*0.10, 0.0, 0.0);
+ cairo_set_source_rgb(cr, gc->brightness*0.20, 0.0, 0.0);
pango_cairo_show_layout(cr, layout);
pango_layout_set_text(layout, timestr, -1);