mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3407 Default color palette for new well paths
This commit is contained in:
@@ -497,6 +497,26 @@ const caf::ColorTable& RiaColorTables::timestepsPaletteColors()
|
||||
return colorTable;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
const caf::ColorTable& RiaColorTables::editableWellPathsPaletteColors()
|
||||
{
|
||||
static std::vector<cvf::Color3ub> colors{
|
||||
cvf::Color3ub( 204, 0, 204), // Dark magenta
|
||||
cvf::Color3ub( 173, 23, 212), // Strong Purple
|
||||
cvf::Color3ub( 143, 46, 219), //Purple
|
||||
cvf::Color3ub( 102, 76, 230), // Gray Blue
|
||||
cvf::Color3ub( 71, 99, 237), // Lighter Gray Blue
|
||||
cvf::Color3ub( 31, 130, 247), // Strong Blue
|
||||
cvf::Color3ub( 0, 153, 255), // Dark Turquise
|
||||
};
|
||||
|
||||
static caf::ColorTable colorTable = caf::ColorTable(colors);
|
||||
|
||||
return colorTable;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user