From fb0cd0785d0ba606a4fef4b371ebd022e88752d3 2012-03-20 07:18:38 From: Tero Ahola Date: 2012-03-20 07:18:38 Subject: [PATCH] Use pure white in the light end of gradients --- diff --git a/src/charttheme.cpp b/src/charttheme.cpp index dcfe137..fce80a2 100644 --- a/src/charttheme.cpp +++ b/src/charttheme.cpp @@ -281,7 +281,7 @@ void ChartTheme::generateSeriesGradients() // most themes. The rest of the gradients we can define manually in theme specific // implementation. QColor start = color; - start.setHsvF(h, 0.05, 0.95); + start.setHsvF(h, 0.0, 1.0); g.setColorAt(0.0, start); g.setColorAt(0.5, color);