mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
statistics: move colors to statscolors.h
Most colors were already collected there, but a few were dispersed throughout the source files. For future themeability, move the remaining colors to this common place. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
ba259fb1d6
commit
2e2019dea7
6 changed files with 12 additions and 8 deletions
|
@ -14,6 +14,14 @@ inline const QColor darkLabelColor(Qt::black);
|
|||
inline const QColor lightLabelColor(Qt::white);
|
||||
inline const QColor axisColor(Qt::black);
|
||||
inline const QColor gridColor(0xcc, 0xcc, 0xcc);
|
||||
inline const QColor informationBorderColor(Qt::black);
|
||||
inline const QColor informationColor(0xff, 0xff, 0x00, 192); // Note: fourth argument is opacity
|
||||
inline const QColor legendColor(0x00, 0x8e, 0xcc, 192); // Note: fourth argument is opacity
|
||||
inline const QColor legendBorderColor(Qt::black);
|
||||
inline const QColor quartileMarkerColor(Qt::red);
|
||||
inline const QColor regressionItemColor(Qt::red);
|
||||
inline const QColor meanMarkerColor(Qt::green);
|
||||
inline const QColor medianMarkerColor(Qt::red);
|
||||
|
||||
QColor binColor(int bin, int numBins);
|
||||
QColor labelColor(int bin, size_t numBins);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue