Index: plugins/clock/clock-lcd.c =================================================================== --- plugins/clock/clock-lcd.c (Revision 29476) +++ plugins/clock/clock-lcd.c (Arbeitskopie) @@ -280,6 +280,7 @@ { XfceClockLcd *lcd = XFCE_CLOCK_LCD (widget); cairo_t *cr; + GtkStyle *style; gdouble offset_x, offset_y; gint ticks, i; gdouble size; @@ -308,6 +309,10 @@ /* get the cairo context */ cr = gdk_cairo_create (widget->window); + /* set the color */ + style = gtk_widget_get_style (widget); + gdk_cairo_set_source_color (cr, &style->fg[GTK_STATE_NORMAL]); + if (G_LIKELY (cr != NULL)) { /* clip the drawing area */