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