##// END OF EJS Templates
Colors of the light theme
Tero Ahola -
r607:32d18e1badc3
parent child
Show More
@@ -8,9 +8,11 public:
8 8 ChartThemeLight() : ChartTheme(QChart::ChartThemeLight)
9 9 {
10 10 // Series colors
11 m_seriesColors << QRgb(0x1c9dde);
12 m_seriesColors << QRgb(0xf7a015);
13 m_seriesColors << QRgb(0x8dc444);
11 m_seriesColors << QRgb(0x209fdf);
12 m_seriesColors << QRgb(0x99ca53);
13 m_seriesColors << QRgb(0xf6a625);
14 m_seriesColors << QRgb(0x6d5fd5);
15 m_seriesColors << QRgb(0xbf593e);
14 16 generateSeriesGradients();
15 17
16 18 // Background
@@ -22,13 +24,13 public:
22 24
23 25 // Axes and other
24 26 m_masterFont = QFont();
25 m_axisLinePen = QPen(QRgb(0x424242));
27 m_axisLinePen = QPen(QRgb(0xe2e2e2));
26 28 m_axisLinePen.setWidth(1);
27 m_axisLabelBrush = QBrush(QRgb(0x424242));
29 m_axisLabelBrush = QBrush(QRgb(0x838383));
28 30 m_axisLabelPen = Qt::NoPen; // NoPen for performance reasons
29 31 m_backgroundShadesPen = Qt::NoPen;
30 32 m_backgroundShades = BackgroundShadesNone;
31 m_gridLinePen = QPen(QRgb(0x424242));
33 m_gridLinePen = QPen(QRgb(0xe2e2e2));
32 34 m_gridLinePen.setWidth(1);
33 35 }
34 36 };
General Comments 0
You need to be logged in to leave comments. Login now