From 2c2c82643d77eaff136f2fa8a952c95f88545c28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rnar=20Grip=20Fj=C3=A6r?= Date: Wed, 16 Aug 2017 09:30:40 +0200 Subject: [PATCH] #1126 Adjust colors for cumulative saturation by TOF plot --- .../UserInterface/RiuTofAccumulatedPhaseFractionsPlot.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ApplicationCode/UserInterface/RiuTofAccumulatedPhaseFractionsPlot.cpp b/ApplicationCode/UserInterface/RiuTofAccumulatedPhaseFractionsPlot.cpp index a3a18d5dd3..897716c16f 100644 --- a/ApplicationCode/UserInterface/RiuTofAccumulatedPhaseFractionsPlot.cpp +++ b/ApplicationCode/UserInterface/RiuTofAccumulatedPhaseFractionsPlot.cpp @@ -60,19 +60,19 @@ RiuTofAccumulatedPhaseFractionsPlot::RiuTofAccumulatedPhaseFractionsPlot(RimTofA setTitle(title); m_watCurve = new QwtPlotCurve; - setCurveColor(m_watCurve, QColor(0, 0, 169)); + setCurveColor(m_watCurve, QColor(62, 122, 167)); // Blue m_watCurve->setZ(0.9); m_watCurve->setTitle("Water"); m_watCurve->setRenderHint(QwtPlotItem::RenderAntialiased, true); m_oilCurve = new QwtPlotCurve; - setCurveColor(m_oilCurve, QColor(169, 0, 0)); + setCurveColor(m_oilCurve, QColor(169, 18, 16)); // Red m_oilCurve->setZ(0.8); m_oilCurve->setTitle("Oil"); m_oilCurve->setRenderHint(QwtPlotItem::RenderAntialiased, true); m_gasCurve = new QwtPlotCurve; - setCurveColor(m_gasCurve, QColor(0, 100, 0)); + setCurveColor(m_gasCurve, QColor(123, 167, 0)); // Green m_gasCurve->setZ(0.7); m_gasCurve->setTitle("Gas"); m_gasCurve->setRenderHint(QwtPlotItem::RenderAntialiased, true);