R-Type  2
Doom but in better
Loading...
Searching...
No Matches
GUI::ECS::Systems::Colour Class Reference

A class for representing and manipulating colors using RGBA components. Inherits from EntityNode to associate colors with entities in the ECS. More...

#include <Colour.hpp>

Inheritance diagram for GUI::ECS::Systems::Colour:
Inheritance graph
Collaboration diagram for GUI::ECS::Systems::Colour:
Collaboration graph

Public Member Functions

 Colour ()
 Default constructor. Initializes a color with black (0, 0, 0, 255).
 
 Colour (const GUI::ECS::Systems::Colour &copy)
 Copy constructor. Creates a color by copying another color.
 
 Colour (const std::uint32_t entityId)
 Constructs a color associated with a specific entity ID.
 
 Colour (const std::uint32_t colour, const std::string &name)
 Constructs a color associated with a specific entity ID.
 
 Colour (const std::uint32_t entityId, const Colour &copy)
 Constructs a color associated with an entity ID and copies properties from another color.
 
 Colour (const std::uint32_t entityId, const std::uint32_t color, const std::string &name)
 Constructs a color from a 32-bit integer representation.
 
 Colour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue)
 Constructs a color with specific RGBA components.
 
 Colour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::string &name)
 Constructs a color with specific RGBA components.
 
 Colour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::uint8_t alpha)
 Constructs a color with specific RGBA components.
 
 Colour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::uint8_t alpha, const std::string &name)
 Constructs a color with specific RGBA components.
 
 Colour (const std::uint32_t entityId, const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue)
 Constructs a color with specific RGBA components, associated with an entity ID.
 
 Colour (const std::uint32_t entityId, const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::uint8_t alpha)
 Constructs a color with specific RGBA components, associated with an entity ID.
 
 Colour (const std::uint32_t entityId, const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::uint8_t alpha, const std::string &name)
 Constructs a color with specific RGBA components, associated with an entity ID.
 
void setName (const std::string &name)
 Set the Name of the colour in the class.
 
void setColour (const std::uint32_t color)
 Sets the color using a 32-bit integer representation.
 
void setColour (const std::uint32_t color, const std::string &name)
 Sets the color using a 32-bit integer representation.
 
void setColour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue)
 Sets the color using individual RGBA components.
 
void setColour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::uint8_t alpha)
 Sets the color using individual RGBA components.
 
void setColour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::string &name)
 Sets the color using individual RGBA components.
 
void setColour (const std::uint8_t red, const std::uint8_t green, const std::uint8_t blue, const std::uint8_t alpha, const std::string &name)
 Sets the color using individual RGBA components.
 
void setRed (const std::uint8_t red)
 Sets the red component of the color.
 
void setBlue (const std::uint8_t blue)
 Sets the blue component of the color.
 
void setGreen (const std::uint8_t green)
 Sets the green component of the color.
 
void setAlpha (const std::uint8_t alpha)
 Sets the alpha (transparency) component of the color.
 
const std::uint32_t toInteger () const
 Retrieves the color as a 32-bit unsigned integer.
 
const std::any toRenderColour () const
 Converts the color to an SFML sf::Color object (or another similare object format if the rendering library isn't sfml).
 
void update (const Colour &copy)
 Updates the color by copying from another Colour instance.
 
void update (const std::uint32_t color)
 Updates the color using a 32-bit integer representation.
 
const std::uint8_t getRed () const
 Retrieves the red component of the color.
 
const std::uint8_t getBlue () const
 Retrieves the blue component of the color.
 
const std::uint8_t getGreen () const
 Retrieves the green component of the color.
 
const std::uint8_t getAlpha () const
 Retrieves the alpha component of the color.
 
const std::uint32_t getColour () const
 Retrieves the color as a 32-bit integer (0xRRGGBBAA).
 
const std::uint32_t getInteger () const
 Retrieves the color as a 32-bit integer. Alias for getColour.
 
const std::any getRenderColour () const
 Retrieves the color as an SFML sf::Color if the sfml library is the underlying library, otherwise, it will be another format.
 
const std::string getName () const
 Get the Name of the colour contained in the class.
 
const std::string getInfo (const unsigned int indent=0) const
 This is a function meant for debugging purposes It will dump the current state of the variables upon call. It will dump them for itself and any of it's underlying classes.
 
GUI::ECS::Systems::Colouroperator= (const GUI::ECS::Systems::Colour &copy)
 Operator in charge of assigning the content of one colour to another.
 
- Public Member Functions inherited from GUI::ECS::EntityNode
 EntityNode (const size_t entityId=0)
 
virtual ~EntityNode ()=default
 
virtual size_t getEntityNodeId () const
 

Static Public Member Functions

static const std::uint8_t clamp (std::int32_t value, std::uint8_t min=0, std::uint8_t max=255)
 Clamps a value between a minimum and maximum range.
 

Static Public Attributes

static const Colour Snow
 
static const Colour Snow1
 
static const Colour Snow2
 
static const Colour RosyBrown1
 
static const Colour RosyBrown2
 
static const Colour Snow3
 
static const Colour LightCoral
 
static const Colour IndianRed1
 
static const Colour RosyBrown3
 
static const Colour IndianRed2
 
static const Colour RosyBrown
 
static const Colour Brown1
 
static const Colour Firebrick1
 
static const Colour Brown2
 
static const Colour IndianRed
 
static const Colour IndianRed3
 
static const Colour Firebrick2
 
static const Colour Snow4
 
static const Colour Brown3
 
static const Colour Red
 
static const Colour Red1
 
static const Colour RosyBrown4
 
static const Colour Firebrick3
 
static const Colour Red2
 
static const Colour Firebrick
 
static const Colour Brown
 
static const Colour Red3
 
static const Colour IndianRed4
 
static const Colour Brown4
 
static const Colour Firebrick4
 
static const Colour DarkRed
 
static const Colour Red4
 
static const Colour Maroon
 
static const Colour LightPink1
 
static const Colour LightPink3
 
static const Colour LightPink4
 
static const Colour LightPink2
 
static const Colour LightPink
 
static const Colour Pink
 
static const Colour Crimson
 
static const Colour Pink1
 
static const Colour Pink2
 
static const Colour Pink3
 
static const Colour Pink4
 
static const Colour PaleVioletRed4
 
static const Colour PaleVioletRed
 
static const Colour PaleVioletRed2
 
static const Colour PaleVioletRed1
 
static const Colour PaleVioletRed3
 
static const Colour LavenderBlush
 
static const Colour LavenderBlush1
 
static const Colour LavenderBlush3
 
static const Colour LavenderBlush2
 
static const Colour LavenderBlush4
 
static const Colour Maroon5
 
static const Colour HotPink3
 
static const Colour VioletRed3
 
static const Colour VioletRed1
 
static const Colour VioletRed2
 
static const Colour VioletRed4
 
static const Colour HotPink2
 
static const Colour HotPink1
 
static const Colour HotPink4
 
static const Colour HotPink
 
static const Colour DeepPink
 
static const Colour DeepPink1
 
static const Colour DeepPink2
 
static const Colour DeepPink3
 
static const Colour DeepPink4
 
static const Colour Maroon1
 
static const Colour Maroon2
 
static const Colour Maroon3
 
static const Colour Maroon4
 
static const Colour MediumVioletRed
 
static const Colour VioletRed
 
static const Colour Orchid2
 
static const Colour Orchid
 
static const Colour Orchid1
 
static const Colour Orchid3
 
static const Colour Orchid4
 
static const Colour Thistle1
 
static const Colour Thistle2
 
static const Colour Plum1
 
static const Colour Plum2
 
static const Colour Thistle
 
static const Colour Thistle3
 
static const Colour Plum
 
static const Colour Violet
 
static const Colour Plum3
 
static const Colour Thistle4
 
static const Colour Fuchsia
 
static const Colour Magenta
 
static const Colour Magenta1
 
static const Colour Plum4
 
static const Colour Magenta2
 
static const Colour Magenta3
 
static const Colour DarkMagenta
 
static const Colour Magenta4
 
static const Colour Purple
 
static const Colour MediumOrchid
 
static const Colour MediumOrchid1
 
static const Colour MediumOrchid2
 
static const Colour MediumOrchid3
 
static const Colour MediumOrchid4
 
static const Colour DarkViolet
 
static const Colour DarkOrchid
 
static const Colour DarkOrchid1
 
static const Colour DarkOrchid3
 
static const Colour DarkOrchid2
 
static const Colour DarkOrchid4
 
static const Colour Purple5
 
static const Colour Indigo
 
static const Colour BlueViolet
 
static const Colour Purple2
 
static const Colour Purple3
 
static const Colour Purple4
 
static const Colour Purple1
 
static const Colour MediumPurple
 
static const Colour MediumPurple1
 
static const Colour MediumPurple2
 
static const Colour MediumPurple3
 
static const Colour MediumPurple4
 
static const Colour DarkSlateBlue
 
static const Colour LightSlateBlue
 
static const Colour MediumSlateBlue
 
static const Colour SlateBlue
 
static const Colour SlateBlue1
 
static const Colour SlateBlue2
 
static const Colour SlateBlue3
 
static const Colour SlateBlue4
 
static const Colour GhostWhite
 
static const Colour Lavender
 
static const Colour Blue
 
static const Colour Blue1
 
static const Colour Blue2
 
static const Colour Blue3
 
static const Colour MediumBlue
 
static const Colour Blue4
 
static const Colour DarkBlue
 
static const Colour MidnightBlue
 
static const Colour Navy
 
static const Colour NavyBlue
 
static const Colour RoyalBlue
 
static const Colour RoyalBlue1
 
static const Colour RoyalBlue2
 
static const Colour RoyalBlue3
 
static const Colour RoyalBlue4
 
static const Colour CornflowerBlue
 
static const Colour LightSteelBlue
 
static const Colour LightSteelBlue1
 
static const Colour LightSteelBlue2
 
static const Colour LightSteelBlue3
 
static const Colour LightSteelBlue4
 
static const Colour SlateGray4
 
static const Colour SlateGray1
 
static const Colour SlateGray2
 
static const Colour SlateGray3
 
static const Colour LightSlateGray
 
static const Colour LightSlateGrey
 
static const Colour SlateGray
 
static const Colour SlateGrey
 
static const Colour DodgerBlue
 
static const Colour DodgerBlue1
 
static const Colour DodgerBlue2
 
static const Colour DodgerBlue4
 
static const Colour DodgerBlue3
 
static const Colour AliceBlue
 
static const Colour SteelBlue4
 
static const Colour SteelBlue
 
static const Colour SteelBlue1
 
static const Colour SteelBlue2
 
static const Colour SteelBlue3
 
static const Colour SkyBlue4
 
static const Colour SkyBlue1
 
static const Colour SkyBlue2
 
static const Colour SkyBlue3
 
static const Colour LightSkyBlue
 
static const Colour LightSkyBlue4
 
static const Colour LightSkyBlue1
 
static const Colour LightSkyBlue2
 
static const Colour LightSkyBlue3
 
static const Colour SkyBlue
 
static const Colour LightBlue3
 
static const Colour DeepSkyBlue
 
static const Colour DeepSkyBlue1
 
static const Colour DeepSkyBlue2
 
static const Colour DeepSkyBlue4
 
static const Colour DeepSkyBlue3
 
static const Colour LightBlue1
 
static const Colour LightBlue2
 
static const Colour LightBlue
 
static const Colour LightBlue4
 
static const Colour PowderBlue
 
static const Colour CadetBlue1
 
static const Colour CadetBlue2
 
static const Colour CadetBlue3
 
static const Colour CadetBlue4
 
static const Colour Turquoise1
 
static const Colour Turquoise2
 
static const Colour Turquoise3
 
static const Colour Turquoise4
 
static const Colour CadetBlue
 
static const Colour DarkTurquoise
 
static const Colour Azure
 
static const Colour Azure1
 
static const Colour LightCyan
 
static const Colour LightCyan1
 
static const Colour Azure2
 
static const Colour LightCyan2
 
static const Colour PaleTurquoise1
 
static const Colour PaleTurquoise
 
static const Colour PaleTurquoise2
 
static const Colour DarkSlateGray1
 
static const Colour Azure3
 
static const Colour LightCyan3
 
static const Colour DarkSlateGray2
 
static const Colour PaleTurquoise3
 
static const Colour DarkSlateGray3
 
static const Colour Azure4
 
static const Colour LightCyan4
 
static const Colour Aqua
 
static const Colour Cyan
 
static const Colour Cyan1
 
static const Colour PaleTurquoise4
 
static const Colour Cyan2
 
static const Colour DarkSlateGray4
 
static const Colour Cyan3
 
static const Colour Cyan4
 
static const Colour DarkCyan
 
static const Colour Teal
 
static const Colour DarkSlateGray
 
static const Colour DarkSlateGrey
 
static const Colour MediumTurquoise
 
static const Colour LightSeaGreen
 
static const Colour Turquoise
 
static const Colour Aquamarine4
 
static const Colour Aquamarine
 
static const Colour Aquamarine1
 
static const Colour Aquamarine2
 
static const Colour Aquamarine3
 
static const Colour MediumAquamarine
 
static const Colour MediumSpringGreen
 
static const Colour MintCream
 
static const Colour SpringGreen
 
static const Colour SpringGreen1
 
static const Colour SpringGreen2
 
static const Colour SpringGreen3
 
static const Colour SpringGreen4
 
static const Colour MediumSeaGreen
 
static const Colour SeaGreen
 
static const Colour SeaGreen3
 
static const Colour SeaGreen1
 
static const Colour SeaGreen4
 
static const Colour SeaGreen2
 
static const Colour MediumForestGreen
 
static const Colour Honeydew
 
static const Colour Honeydew1
 
static const Colour Honeydew2
 
static const Colour DarkSeaGreen1
 
static const Colour DarkSeaGreen2
 
static const Colour PaleGreen1
 
static const Colour PaleGreen
 
static const Colour Honeydew3
 
static const Colour LightGreen
 
static const Colour PaleGreen2
 
static const Colour DarkSeaGreen3
 
static const Colour DarkSeaGreen
 
static const Colour PaleGreen3
 
static const Colour Honeydew4
 
static const Colour Green1
 
static const Colour Lime
 
static const Colour LimeGreen
 
static const Colour DarkSeaGreen4
 
static const Colour Green2
 
static const Colour PaleGreen4
 
static const Colour Green3
 
static const Colour ForestGreen
 
static const Colour Green4
 
static const Colour Green
 
static const Colour DarkGreen
 
static const Colour LawnGreen
 
static const Colour Chartreuse
 
static const Colour Chartreuse1
 
static const Colour Chartreuse2
 
static const Colour Chartreuse3
 
static const Colour Chartreuse4
 
static const Colour GreenYellow
 
static const Colour DarkOliveGreen3
 
static const Colour DarkOliveGreen1
 
static const Colour DarkOliveGreen2
 
static const Colour DarkOliveGreen4
 
static const Colour DarkOliveGreen
 
static const Colour OliveDrab
 
static const Colour OliveDrab1
 
static const Colour OliveDrab2
 
static const Colour OliveDrab3
 
static const Colour YellowGreen
 
static const Colour OliveDrab4
 
static const Colour Ivory
 
static const Colour Ivory1
 
static const Colour LightYellow
 
static const Colour LightYellow1
 
static const Colour Beige
 
static const Colour Ivory2
 
static const Colour LightGoldenrodYellow
 
static const Colour LightYellow2
 
static const Colour Ivory3
 
static const Colour LightYellow3
 
static const Colour Ivory4
 
static const Colour LightYellow4
 
static const Colour Yellow
 
static const Colour Yellow1
 
static const Colour Yellow2
 
static const Colour Yellow3
 
static const Colour Yellow4
 
static const Colour Olive
 
static const Colour DarkKhaki
 
static const Colour Khaki2
 
static const Colour LemonChiffon4
 
static const Colour Khaki1
 
static const Colour Khaki3
 
static const Colour Khaki4
 
static const Colour PaleGoldenrod
 
static const Colour LemonChiffon
 
static const Colour LemonChiffon1
 
static const Colour Khaki
 
static const Colour LemonChiffon3
 
static const Colour LemonChiffon2
 
static const Colour MediumGoldenRod
 
static const Colour Cornsilk4
 
static const Colour Gold
 
static const Colour Gold1
 
static const Colour Gold2
 
static const Colour Gold3
 
static const Colour Gold4
 
static const Colour LightGoldenrod
 
static const Colour LightGoldenrod4
 
static const Colour LightGoldenrod1
 
static const Colour LightGoldenrod3
 
static const Colour LightGoldenrod2
 
static const Colour Cornsilk3
 
static const Colour Cornsilk2
 
static const Colour Cornsilk
 
static const Colour Cornsilk1
 
static const Colour Goldenrod
 
static const Colour Goldenrod1
 
static const Colour Goldenrod2
 
static const Colour Goldenrod3
 
static const Colour Goldenrod4
 
static const Colour DarkGoldenrod
 
static const Colour DarkGoldenrod1
 
static const Colour DarkGoldenrod2
 
static const Colour DarkGoldenrod3
 
static const Colour DarkGoldenrod4
 
static const Colour FloralWhite
 
static const Colour Wheat2
 
static const Colour OldLace
 
static const Colour Wheat
 
static const Colour Wheat1
 
static const Colour Wheat3
 
static const Colour Orange
 
static const Colour Orange1
 
static const Colour Orange2
 
static const Colour Orange3
 
static const Colour Orange4
 
static const Colour Wheat4
 
static const Colour Moccasin
 
static const Colour PapayaWhip
 
static const Colour NavajoWhite3
 
static const Colour BlanchedAlmond
 
static const Colour NavajoWhite
 
static const Colour NavajoWhite1
 
static const Colour NavajoWhite2
 
static const Colour NavajoWhite4
 
static const Colour AntiqueWhite4
 
static const Colour AntiqueWhite
 
static const Colour Tan
 
static const Colour Bisque4
 
static const Colour Burlywood
 
static const Colour AntiqueWhite2
 
static const Colour Burlywood1
 
static const Colour Burlywood3
 
static const Colour Burlywood2
 
static const Colour AntiqueWhite1
 
static const Colour Burlywood4
 
static const Colour AntiqueWhite3
 
static const Colour DarkOrange
 
static const Colour Bisque2
 
static const Colour Bisque
 
static const Colour Bisque1
 
static const Colour Bisque3
 
static const Colour DarkOrange1
 
static const Colour Linen
 
static const Colour DarkOrange2
 
static const Colour DarkOrange3
 
static const Colour DarkOrange4
 
static const Colour Peru
 
static const Colour Tan1
 
static const Colour Tan2
 
static const Colour Tan3
 
static const Colour Tan4
 
static const Colour PeachPuff
 
static const Colour PeachPuff1
 
static const Colour PeachPuff4
 
static const Colour PeachPuff2
 
static const Colour PeachPuff3
 
static const Colour SandyBrown
 
static const Colour Seashell4
 
static const Colour Seashell2
 
static const Colour Seashell3
 
static const Colour Chocolate
 
static const Colour Chocolate1
 
static const Colour Chocolate2
 
static const Colour Chocolate3
 
static const Colour Chocolate4
 
static const Colour SaddleBrown
 
static const Colour Seashell
 
static const Colour Seashell1
 
static const Colour Sienna4
 
static const Colour Sienna
 
static const Colour Sienna1
 
static const Colour Sienna2
 
static const Colour Sienna3
 
static const Colour LightSalmon3
 
static const Colour LightSalmon
 
static const Colour LightSalmon1
 
static const Colour LightSalmon4
 
static const Colour LightSalmon2
 
static const Colour Coral
 
static const Colour OrangeRed
 
static const Colour OrangeRed1
 
static const Colour OrangeRed2
 
static const Colour OrangeRed3
 
static const Colour OrangeRed4
 
static const Colour DarkSalmon
 
static const Colour Salmon1
 
static const Colour Salmon2
 
static const Colour Salmon3
 
static const Colour Salmon4
 
static const Colour Coral1
 
static const Colour Coral2
 
static const Colour Coral3
 
static const Colour Coral4
 
static const Colour Tomato4
 
static const Colour Tomato
 
static const Colour Tomato1
 
static const Colour Tomato2
 
static const Colour Tomato3
 
static const Colour MistyRose4
 
static const Colour MistyRose2
 
static const Colour MistyRose
 
static const Colour MistyRose1
 
static const Colour Salmon
 
static const Colour MistyRose3
 
static const Colour White
 
static const Colour Gray100
 
static const Colour Grey100
 
static const Colour Gray99
 
static const Colour Grey99
 
static const Colour Gray98
 
static const Colour Grey98
 
static const Colour Gray97
 
static const Colour Grey97
 
static const Colour Gray96
 
static const Colour Grey96
 
static const Colour WhiteSmoke
 
static const Colour Gray95
 
static const Colour Grey95
 
static const Colour Gray94
 
static const Colour Grey94
 
static const Colour Gray93
 
static const Colour Grey93
 
static const Colour Gray92
 
static const Colour Grey92
 
static const Colour Gray91
 
static const Colour Grey91
 
static const Colour Gray90
 
static const Colour Grey90
 
static const Colour Gray89
 
static const Colour Grey89
 
static const Colour Gray88
 
static const Colour Grey88
 
static const Colour Gray87
 
static const Colour Grey87
 
static const Colour Gainsboro
 
static const Colour Gray86
 
static const Colour Grey86
 
static const Colour Gray85
 
static const Colour Grey85
 
static const Colour Gray84
 
static const Colour Grey84
 
static const Colour Gray83
 
static const Colour Grey83
 
static const Colour LightGray
 
static const Colour LightGrey
 
static const Colour Gray82
 
static const Colour Grey82
 
static const Colour Gray81
 
static const Colour Grey81
 
static const Colour Gray80
 
static const Colour Grey80
 
static const Colour Gray79
 
static const Colour Grey79
 
static const Colour Gray78
 
static const Colour Grey78
 
static const Colour Gray77
 
static const Colour Grey77
 
static const Colour Gray76
 
static const Colour Grey76
 
static const Colour Silver
 
static const Colour Gray75
 
static const Colour Grey75
 
static const Colour Gray74
 
static const Colour Grey74
 
static const Colour Gray73
 
static const Colour Grey73
 
static const Colour Gray72
 
static const Colour Grey72
 
static const Colour Gray71
 
static const Colour Grey71
 
static const Colour Gray70
 
static const Colour Grey70
 
static const Colour Gray69
 
static const Colour Grey69
 
static const Colour Gray68
 
static const Colour Grey68
 
static const Colour Gray67
 
static const Colour Grey67
 
static const Colour DarkGray
 
static const Colour DarkGrey
 
static const Colour Gray66
 
static const Colour Grey66
 
static const Colour Gray65
 
static const Colour Grey65
 
static const Colour Gray64
 
static const Colour Grey64
 
static const Colour Gray63
 
static const Colour Grey63
 
static const Colour Gray62
 
static const Colour Grey62
 
static const Colour Gray61
 
static const Colour Grey61
 
static const Colour Gray60
 
static const Colour Grey60
 
static const Colour Gray59
 
static const Colour Grey59
 
static const Colour Gray58
 
static const Colour Grey58
 
static const Colour Gray57
 
static const Colour Grey57
 
static const Colour Gray56
 
static const Colour Grey56
 
static const Colour Gray55
 
static const Colour Grey55
 
static const Colour Gray54
 
static const Colour Grey54
 
static const Colour Gray53
 
static const Colour Grey53
 
static const Colour Gray52
 
static const Colour Grey52
 
static const Colour Gray51
 
static const Colour Grey51
 
static const Colour Fractal
 
static const Colour Gray50
 
static const Colour Grey50
 
static const Colour Gray
 
static const Colour Gray49
 
static const Colour Grey49
 
static const Colour Gray48
 
static const Colour Grey48
 
static const Colour Gray47
 
static const Colour Grey47
 
static const Colour Gray46
 
static const Colour Grey46
 
static const Colour Gray45
 
static const Colour Grey45
 
static const Colour Gray44
 
static const Colour Grey44
 
static const Colour Gray43
 
static const Colour Grey43
 
static const Colour Gray42
 
static const Colour Grey42
 
static const Colour DimGray
 
static const Colour DimGrey
 
static const Colour Gray41
 
static const Colour Grey41
 
static const Colour Gray40
 
static const Colour Grey40
 
static const Colour Gray39
 
static const Colour Grey39
 
static const Colour Gray38
 
static const Colour Grey38
 
static const Colour Gray37
 
static const Colour Grey37
 
static const Colour Gray36
 
static const Colour Grey36
 
static const Colour Gray35
 
static const Colour Grey35
 
static const Colour Gray34
 
static const Colour Grey34
 
static const Colour Gray33
 
static const Colour Grey33
 
static const Colour Gray32
 
static const Colour Grey32
 
static const Colour Gray31
 
static const Colour Grey31
 
static const Colour Gray30
 
static const Colour Grey30
 
static const Colour Gray29
 
static const Colour Grey29
 
static const Colour Gray28
 
static const Colour Grey28
 
static const Colour Gray27
 
static const Colour Grey27
 
static const Colour Gray26
 
static const Colour Grey26
 
static const Colour Gray25
 
static const Colour Grey25
 
static const Colour Gray24
 
static const Colour Grey24
 
static const Colour Gray23
 
static const Colour Grey23
 
static const Colour Gray22
 
static const Colour Grey22
 
static const Colour Gray21
 
static const Colour Grey21
 
static const Colour Gray20
 
static const Colour Grey20
 
static const Colour Gray19
 
static const Colour Grey19
 
static const Colour Gray18
 
static const Colour Grey18
 
static const Colour Gray17
 
static const Colour Grey17
 
static const Colour Gray16
 
static const Colour Grey16
 
static const Colour Gray15
 
static const Colour Grey15
 
static const Colour Gray14
 
static const Colour Grey14
 
static const Colour Gray13
 
static const Colour Grey13
 
static const Colour Gray12
 
static const Colour Grey12
 
static const Colour Gray11
 
static const Colour Grey11
 
static const Colour Gray10
 
static const Colour Grey10
 
static const Colour Gray9
 
static const Colour Grey9
 
static const Colour Gray8
 
static const Colour Grey8
 
static const Colour Gray7
 
static const Colour Grey7
 
static const Colour Gray6
 
static const Colour Grey6
 
static const Colour Gray5
 
static const Colour Grey5
 
static const Colour Gray4
 
static const Colour Grey4
 
static const Colour Gray3
 
static const Colour Grey3
 
static const Colour Gray2
 
static const Colour Grey2
 
static const Colour Gray1
 
static const Colour Grey1
 
static const Colour Black
 
static const Colour Gray0
 
static const Colour Grey0
 
static const Colour Opaque
 
static const Colour None
 
static const Colour Transparent
 

Additional Inherited Members

- Protected Attributes inherited from GUI::ECS::EntityNode
size_t _entityID
 

Detailed Description

A class for representing and manipulating colors using RGBA components. Inherits from EntityNode to associate colors with entities in the ECS.

Definition at line 37 of file Colour.hpp.

Constructor & Destructor Documentation

◆ Colour() [1/13]

GUI::ECS::Systems::Colour::Colour ( )

Default constructor. Initializes a color with black (0, 0, 0, 255).

Definition at line 17 of file Colour.cpp.

◆ Colour() [2/13]

GUI::ECS::Systems::Colour::Colour ( const GUI::ECS::Systems::Colour & copy)

Copy constructor. Creates a color by copying another color.

Parameters
copyThe color to copy.

Definition at line 19 of file Colour.cpp.

◆ Colour() [3/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t entityId)

Constructs a color associated with a specific entity ID.

Parameters
entityIdThe ID of the entity.

Definition at line 25 of file Colour.cpp.

◆ Colour() [4/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t colour,
const std::string & name )

Constructs a color associated with a specific entity ID.

Parameters
colorThe 32-bit integer color value (0xRRGGBBAA).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 30 of file Colour.cpp.

◆ Colour() [5/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t entityId,
const Colour & copy )
explicit

Constructs a color associated with an entity ID and copies properties from another color.

Parameters
entityIdThe ID of the entity.
copyThe color to copy.

Definition at line 36 of file Colour.cpp.

◆ Colour() [6/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t entityId,
const std::uint32_t color,
const std::string & name )

Constructs a color from a 32-bit integer representation.

Parameters
entityIdThe ID of the entity.
colorThe 32-bit integer color value (0xRRGGBBAA).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 42 of file Colour.cpp.

◆ Colour() [7/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue )

Constructs a color with specific RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 48 of file Colour.cpp.

◆ Colour() [8/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::string & name )

Constructs a color with specific RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 54 of file Colour.cpp.

◆ Colour() [9/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::uint8_t alpha )

Constructs a color with specific RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
alphaAlpha component (0-255, defaults to 255).

Definition at line 60 of file Colour.cpp.

◆ Colour() [10/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::uint8_t alpha,
const std::string & name )

Constructs a color with specific RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
alphaAlpha component (0-255, defaults to 255).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 66 of file Colour.cpp.

◆ Colour() [11/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t entityId,
const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue )

Constructs a color with specific RGBA components, associated with an entity ID.

Parameters
entityIdThe ID of the entity.
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).

Definition at line 72 of file Colour.cpp.

◆ Colour() [12/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t entityId,
const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::uint8_t alpha )

Constructs a color with specific RGBA components, associated with an entity ID.

Parameters
entityIdThe ID of the entity.
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
alphaAlpha component (0-255, defaults to 255).

Definition at line 79 of file Colour.cpp.

◆ Colour() [13/13]

GUI::ECS::Systems::Colour::Colour ( const std::uint32_t entityId,
const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::uint8_t alpha,
const std::string & name )

Constructs a color with specific RGBA components, associated with an entity ID.

Parameters
entityIdThe ID of the entity.
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
alphaAlpha component (0-255, defaults to 255).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 85 of file Colour.cpp.

Member Function Documentation

◆ clamp()

const std::uint8_t GUI::ECS::Systems::Colour::clamp ( std::int32_t value,
std::uint8_t min = 0,
std::uint8_t max = 255 )
static

Clamps a value between a minimum and maximum range.

Parameters
valueThe value to clamp.
minThe minimum allowable value (default: 0).
maxThe maximum allowable value (default: 255).
Returns
The clamped value.

Definition at line 243 of file Colour.cpp.

◆ getAlpha()

const std::uint8_t GUI::ECS::Systems::Colour::getAlpha ( ) const

Retrieves the alpha component of the color.

Returns
The alpha component (0-255).

Definition at line 200 of file Colour.cpp.

◆ getBlue()

const std::uint8_t GUI::ECS::Systems::Colour::getBlue ( ) const

Retrieves the blue component of the color.

Returns
The blue component (0-255).

Definition at line 190 of file Colour.cpp.

◆ getColour()

const std::uint32_t GUI::ECS::Systems::Colour::getColour ( ) const

Retrieves the color as a 32-bit integer (0xRRGGBBAA).

Returns
The color as a 32-bit integer.

Definition at line 205 of file Colour.cpp.

◆ getGreen()

const std::uint8_t GUI::ECS::Systems::Colour::getGreen ( ) const

Retrieves the green component of the color.

Returns
The green component (0-255).

Definition at line 195 of file Colour.cpp.

◆ getInfo()

const std::string GUI::ECS::Systems::Colour::getInfo ( const unsigned int indent = 0) const

This is a function meant for debugging purposes It will dump the current state of the variables upon call. It will dump them for itself and any of it's underlying classes.

Parameters
indentThe level to which the class should be indented in the dump.
Returns
const std::string The formatted output.

Definition at line 226 of file Colour.cpp.

◆ getInteger()

const std::uint32_t GUI::ECS::Systems::Colour::getInteger ( ) const

Retrieves the color as a 32-bit integer. Alias for getColour.

Returns
The color as a 32-bit integer.

Definition at line 210 of file Colour.cpp.

◆ getName()

const std::string GUI::ECS::Systems::Colour::getName ( ) const

Get the Name of the colour contained in the class.

Returns
const std::string

Definition at line 220 of file Colour.cpp.

◆ getRed()

const std::uint8_t GUI::ECS::Systems::Colour::getRed ( ) const

Retrieves the red component of the color.

Returns
The red component (0-255).

Definition at line 185 of file Colour.cpp.

◆ getRenderColour()

const std::any GUI::ECS::Systems::Colour::getRenderColour ( ) const

Retrieves the color as an SFML sf::Color if the sfml library is the underlying library, otherwise, it will be another format.

Returns
an std::any of the colour (for sfml, an std::any of sf::Color)

Definition at line 215 of file Colour.cpp.

◆ operator=()

GUI::ECS::Systems::Colour & GUI::ECS::Systems::Colour::operator= ( const GUI::ECS::Systems::Colour & copy)

Operator in charge of assigning the content of one colour to another.

Parameters
copyThe colour to copy
Returns
GUI::ECS::Systems::Colour& The resulting colour

Definition at line 249 of file Colour.cpp.

◆ setAlpha()

void GUI::ECS::Systems::Colour::setAlpha ( const std::uint8_t alpha)

Sets the alpha (transparency) component of the color.

Parameters
alphaAlpha component (0-255).

Definition at line 152 of file Colour.cpp.

◆ setBlue()

void GUI::ECS::Systems::Colour::setBlue ( const std::uint8_t blue)

Sets the blue component of the color.

Parameters
blueBlue component (0-255).

Definition at line 142 of file Colour.cpp.

◆ setColour() [1/6]

void GUI::ECS::Systems::Colour::setColour ( const std::uint32_t color)

Sets the color using a 32-bit integer representation.

Parameters
colorThe 32-bit integer color value (0xRRGGBBAA).

Definition at line 96 of file Colour.cpp.

◆ setColour() [2/6]

void GUI::ECS::Systems::Colour::setColour ( const std::uint32_t color,
const std::string & name )

Sets the color using a 32-bit integer representation.

Parameters
colorThe 32-bit integer color value (0xRRGGBBAA).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 104 of file Colour.cpp.

◆ setColour() [3/6]

void GUI::ECS::Systems::Colour::setColour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue )

Sets the color using individual RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).

Definition at line 110 of file Colour.cpp.

◆ setColour() [4/6]

void GUI::ECS::Systems::Colour::setColour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::string & name )

Sets the color using individual RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 117 of file Colour.cpp.

◆ setColour() [5/6]

void GUI::ECS::Systems::Colour::setColour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::uint8_t alpha )

Sets the color using individual RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
alphaAlpha component (0-255, defaults to 255).

Definition at line 123 of file Colour.cpp.

◆ setColour() [6/6]

void GUI::ECS::Systems::Colour::setColour ( const std::uint8_t red,
const std::uint8_t green,
const std::uint8_t blue,
const std::uint8_t alpha,
const std::string & name )

Sets the color using individual RGBA components.

Parameters
redRed component (0-255).
greenGreen component (0-255).
blueBlue component (0-255).
alphaAlpha component (0-255, defaults to 255).
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 131 of file Colour.cpp.

◆ setGreen()

void GUI::ECS::Systems::Colour::setGreen ( const std::uint8_t green)

Sets the green component of the color.

Parameters
greenGreen component (0-255).

Definition at line 147 of file Colour.cpp.

◆ setName()

void GUI::ECS::Systems::Colour::setName ( const std::string & name)

Set the Name of the colour in the class.

Parameters
nameThe name of the colour (this is a way to make the class mor human readable)

Definition at line 91 of file Colour.cpp.

◆ setRed()

void GUI::ECS::Systems::Colour::setRed ( const std::uint8_t red)

Sets the red component of the color.

Parameters
redRed component (0-255).

Definition at line 137 of file Colour.cpp.

◆ toInteger()

const std::uint32_t GUI::ECS::Systems::Colour::toInteger ( ) const

Retrieves the color as a 32-bit unsigned integer.

Returns
The color represented as 0xRRGGBBAA.

Definition at line 157 of file Colour.cpp.

◆ toRenderColour()

const std::any GUI::ECS::Systems::Colour::toRenderColour ( ) const

Converts the color to an SFML sf::Color object (or another similare object format if the rendering library isn't sfml).

Returns
The an std::any of the component expected by the rendering library.

Definition at line 166 of file Colour.cpp.

◆ update() [1/2]

void GUI::ECS::Systems::Colour::update ( const Colour & copy)

Updates the color by copying from another Colour instance.

Parameters
copyThe color to copy.

Definition at line 171 of file Colour.cpp.

◆ update() [2/2]

void GUI::ECS::Systems::Colour::update ( const std::uint32_t color)

Updates the color using a 32-bit integer representation.

Parameters
colorThe 32-bit integer color value (0xRRGGBBAA).

Definition at line 180 of file Colour.cpp.

Field Documentation

◆ AliceBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::AliceBlue
static

Definition at line 469 of file Colour.hpp.

◆ AntiqueWhite

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::AntiqueWhite
static

Definition at line 678 of file Colour.hpp.

◆ AntiqueWhite1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::AntiqueWhite1
static

Definition at line 686 of file Colour.hpp.

◆ AntiqueWhite2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::AntiqueWhite2
static

Definition at line 682 of file Colour.hpp.

◆ AntiqueWhite3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::AntiqueWhite3
static

Definition at line 688 of file Colour.hpp.

◆ AntiqueWhite4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::AntiqueWhite4
static

Definition at line 677 of file Colour.hpp.

◆ Aqua

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Aqua
static

Definition at line 523 of file Colour.hpp.

◆ Aquamarine

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Aquamarine
static

Definition at line 539 of file Colour.hpp.

◆ Aquamarine1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Aquamarine1
static

Definition at line 540 of file Colour.hpp.

◆ Aquamarine2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Aquamarine2
static

Definition at line 541 of file Colour.hpp.

◆ Aquamarine3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Aquamarine3
static

Definition at line 542 of file Colour.hpp.

◆ Aquamarine4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Aquamarine4
static

Definition at line 538 of file Colour.hpp.

◆ Azure

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Azure
static

Definition at line 506 of file Colour.hpp.

◆ Azure1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Azure1
static

Definition at line 507 of file Colour.hpp.

◆ Azure2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Azure2
static

Definition at line 510 of file Colour.hpp.

◆ Azure3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Azure3
static

Definition at line 516 of file Colour.hpp.

◆ Azure4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Azure4
static

Definition at line 521 of file Colour.hpp.

◆ Beige

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Beige
static

Definition at line 605 of file Colour.hpp.

◆ Bisque

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Bisque
static

Definition at line 691 of file Colour.hpp.

◆ Bisque1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Bisque1
static

Definition at line 692 of file Colour.hpp.

◆ Bisque2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Bisque2
static

Definition at line 690 of file Colour.hpp.

◆ Bisque3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Bisque3
static

Definition at line 693 of file Colour.hpp.

◆ Bisque4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Bisque4
static

Definition at line 680 of file Colour.hpp.

◆ Black

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Black
static

Definition at line 969 of file Colour.hpp.

◆ BlanchedAlmond

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::BlanchedAlmond
static

Definition at line 672 of file Colour.hpp.

◆ Blue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Blue
static

Definition at line 435 of file Colour.hpp.

◆ Blue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Blue1
static

Definition at line 436 of file Colour.hpp.

◆ Blue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Blue2
static

Definition at line 437 of file Colour.hpp.

◆ Blue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Blue3
static

Definition at line 438 of file Colour.hpp.

◆ Blue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Blue4
static

Definition at line 440 of file Colour.hpp.

◆ BlueViolet

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::BlueViolet
static

Definition at line 415 of file Colour.hpp.

◆ Brown

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Brown
static

Definition at line 328 of file Colour.hpp.

◆ Brown1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Brown1
static

Definition at line 314 of file Colour.hpp.

◆ Brown2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Brown2
static

Definition at line 316 of file Colour.hpp.

◆ Brown3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Brown3
static

Definition at line 321 of file Colour.hpp.

◆ Brown4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Brown4
static

Definition at line 331 of file Colour.hpp.

◆ Burlywood

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Burlywood
static

Definition at line 681 of file Colour.hpp.

◆ Burlywood1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Burlywood1
static

Definition at line 683 of file Colour.hpp.

◆ Burlywood2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Burlywood2
static

Definition at line 685 of file Colour.hpp.

◆ Burlywood3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Burlywood3
static

Definition at line 684 of file Colour.hpp.

◆ Burlywood4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Burlywood4
static

Definition at line 687 of file Colour.hpp.

◆ CadetBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::CadetBlue
static

Definition at line 504 of file Colour.hpp.

◆ CadetBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::CadetBlue1
static

Definition at line 496 of file Colour.hpp.

◆ CadetBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::CadetBlue2
static

Definition at line 497 of file Colour.hpp.

◆ CadetBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::CadetBlue3
static

Definition at line 498 of file Colour.hpp.

◆ CadetBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::CadetBlue4
static

Definition at line 499 of file Colour.hpp.

◆ Chartreuse

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chartreuse
static

Definition at line 584 of file Colour.hpp.

◆ Chartreuse1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chartreuse1
static

Definition at line 585 of file Colour.hpp.

◆ Chartreuse2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chartreuse2
static

Definition at line 586 of file Colour.hpp.

◆ Chartreuse3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chartreuse3
static

Definition at line 587 of file Colour.hpp.

◆ Chartreuse4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chartreuse4
static

Definition at line 588 of file Colour.hpp.

◆ Chocolate

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chocolate
static

Definition at line 713 of file Colour.hpp.

◆ Chocolate1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chocolate1
static

Definition at line 714 of file Colour.hpp.

◆ Chocolate2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chocolate2
static

Definition at line 715 of file Colour.hpp.

◆ Chocolate3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chocolate3
static

Definition at line 716 of file Colour.hpp.

◆ Chocolate4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Chocolate4
static

Definition at line 717 of file Colour.hpp.

◆ Coral

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Coral
static

Definition at line 731 of file Colour.hpp.

◆ Coral1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Coral1
static

Definition at line 742 of file Colour.hpp.

◆ Coral2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Coral2
static

Definition at line 743 of file Colour.hpp.

◆ Coral3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Coral3
static

Definition at line 744 of file Colour.hpp.

◆ Coral4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Coral4
static

Definition at line 745 of file Colour.hpp.

◆ CornflowerBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::CornflowerBlue
static

Definition at line 450 of file Colour.hpp.

◆ Cornsilk

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cornsilk
static

Definition at line 645 of file Colour.hpp.

◆ Cornsilk1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cornsilk1
static

Definition at line 646 of file Colour.hpp.

◆ Cornsilk2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cornsilk2
static

Definition at line 644 of file Colour.hpp.

◆ Cornsilk3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cornsilk3
static

Definition at line 643 of file Colour.hpp.

◆ Cornsilk4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cornsilk4
static

Definition at line 632 of file Colour.hpp.

◆ Crimson

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Crimson
static

Definition at line 342 of file Colour.hpp.

◆ Cyan

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cyan
static

Definition at line 524 of file Colour.hpp.

◆ Cyan1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cyan1
static

Definition at line 525 of file Colour.hpp.

◆ Cyan2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cyan2
static

Definition at line 527 of file Colour.hpp.

◆ Cyan3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cyan3
static

Definition at line 529 of file Colour.hpp.

◆ Cyan4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Cyan4
static

Definition at line 530 of file Colour.hpp.

◆ DarkBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkBlue
static

Definition at line 441 of file Colour.hpp.

◆ DarkCyan

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkCyan
static

Definition at line 531 of file Colour.hpp.

◆ DarkGoldenrod

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGoldenrod
static

Definition at line 652 of file Colour.hpp.

◆ DarkGoldenrod1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGoldenrod1
static

Definition at line 653 of file Colour.hpp.

◆ DarkGoldenrod2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGoldenrod2
static

Definition at line 654 of file Colour.hpp.

◆ DarkGoldenrod3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGoldenrod3
static

Definition at line 655 of file Colour.hpp.

◆ DarkGoldenrod4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGoldenrod4
static

Definition at line 656 of file Colour.hpp.

◆ DarkGray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGray
static

Definition at line 831 of file Colour.hpp.

◆ DarkGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGreen
static

Definition at line 582 of file Colour.hpp.

◆ DarkGrey

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkGrey
static

Definition at line 832 of file Colour.hpp.

◆ DarkKhaki

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkKhaki
static

Definition at line 619 of file Colour.hpp.

◆ DarkMagenta

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkMagenta
static

Definition at line 399 of file Colour.hpp.

◆ DarkOliveGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOliveGreen
static

Definition at line 594 of file Colour.hpp.

◆ DarkOliveGreen1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOliveGreen1
static

Definition at line 591 of file Colour.hpp.

◆ DarkOliveGreen2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOliveGreen2
static

Definition at line 592 of file Colour.hpp.

◆ DarkOliveGreen3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOliveGreen3
static

Definition at line 590 of file Colour.hpp.

◆ DarkOliveGreen4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOliveGreen4
static

Definition at line 593 of file Colour.hpp.

◆ DarkOrange

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrange
static

Definition at line 689 of file Colour.hpp.

◆ DarkOrange1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrange1
static

Definition at line 694 of file Colour.hpp.

◆ DarkOrange2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrange2
static

Definition at line 696 of file Colour.hpp.

◆ DarkOrange3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrange3
static

Definition at line 697 of file Colour.hpp.

◆ DarkOrange4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrange4
static

Definition at line 698 of file Colour.hpp.

◆ DarkOrchid

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrchid
static

Definition at line 408 of file Colour.hpp.

◆ DarkOrchid1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrchid1
static

Definition at line 409 of file Colour.hpp.

◆ DarkOrchid2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrchid2
static

Definition at line 411 of file Colour.hpp.

◆ DarkOrchid3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrchid3
static

Definition at line 410 of file Colour.hpp.

◆ DarkOrchid4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkOrchid4
static

Definition at line 412 of file Colour.hpp.

◆ DarkRed

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkRed
static

Definition at line 333 of file Colour.hpp.

◆ DarkSalmon

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSalmon
static

Definition at line 737 of file Colour.hpp.

◆ DarkSeaGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSeaGreen
static

Definition at line 569 of file Colour.hpp.

◆ DarkSeaGreen1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSeaGreen1
static

Definition at line 561 of file Colour.hpp.

◆ DarkSeaGreen2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSeaGreen2
static

Definition at line 562 of file Colour.hpp.

◆ DarkSeaGreen3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSeaGreen3
static

Definition at line 568 of file Colour.hpp.

◆ DarkSeaGreen4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSeaGreen4
static

Definition at line 575 of file Colour.hpp.

◆ DarkSlateBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateBlue
static

Definition at line 425 of file Colour.hpp.

◆ DarkSlateGray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateGray
static

Definition at line 533 of file Colour.hpp.

◆ DarkSlateGray1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateGray1
static

Definition at line 515 of file Colour.hpp.

◆ DarkSlateGray2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateGray2
static

Definition at line 518 of file Colour.hpp.

◆ DarkSlateGray3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateGray3
static

Definition at line 520 of file Colour.hpp.

◆ DarkSlateGray4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateGray4
static

Definition at line 528 of file Colour.hpp.

◆ DarkSlateGrey

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkSlateGrey
static

Definition at line 534 of file Colour.hpp.

◆ DarkTurquoise

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkTurquoise
static

Definition at line 505 of file Colour.hpp.

◆ DarkViolet

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DarkViolet
static

Definition at line 407 of file Colour.hpp.

◆ DeepPink

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepPink
static

Definition at line 367 of file Colour.hpp.

◆ DeepPink1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepPink1
static

Definition at line 368 of file Colour.hpp.

◆ DeepPink2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepPink2
static

Definition at line 369 of file Colour.hpp.

◆ DeepPink3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepPink3
static

Definition at line 370 of file Colour.hpp.

◆ DeepPink4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepPink4
static

Definition at line 371 of file Colour.hpp.

◆ DeepSkyBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepSkyBlue
static

Definition at line 486 of file Colour.hpp.

◆ DeepSkyBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepSkyBlue1
static

Definition at line 487 of file Colour.hpp.

◆ DeepSkyBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepSkyBlue2
static

Definition at line 488 of file Colour.hpp.

◆ DeepSkyBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepSkyBlue3
static

Definition at line 490 of file Colour.hpp.

◆ DeepSkyBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DeepSkyBlue4
static

Definition at line 489 of file Colour.hpp.

◆ DimGray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DimGray
static

Definition at line 885 of file Colour.hpp.

◆ DimGrey

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DimGrey
static

Definition at line 886 of file Colour.hpp.

◆ DodgerBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DodgerBlue
static

Definition at line 464 of file Colour.hpp.

◆ DodgerBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DodgerBlue1
static

Definition at line 465 of file Colour.hpp.

◆ DodgerBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DodgerBlue2
static

Definition at line 466 of file Colour.hpp.

◆ DodgerBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DodgerBlue3
static

Definition at line 468 of file Colour.hpp.

◆ DodgerBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::DodgerBlue4
static

Definition at line 467 of file Colour.hpp.

◆ Firebrick

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Firebrick
static

Definition at line 327 of file Colour.hpp.

◆ Firebrick1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Firebrick1
static

Definition at line 315 of file Colour.hpp.

◆ Firebrick2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Firebrick2
static

Definition at line 319 of file Colour.hpp.

◆ Firebrick3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Firebrick3
static

Definition at line 325 of file Colour.hpp.

◆ Firebrick4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Firebrick4
static

Definition at line 332 of file Colour.hpp.

◆ FloralWhite

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::FloralWhite
static

Definition at line 657 of file Colour.hpp.

◆ ForestGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::ForestGreen
static

Definition at line 579 of file Colour.hpp.

◆ Fractal

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Fractal
static

Definition at line 865 of file Colour.hpp.

◆ Fuchsia

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Fuchsia
static

Definition at line 393 of file Colour.hpp.

◆ Gainsboro

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gainsboro
static

Definition at line 787 of file Colour.hpp.

◆ GhostWhite

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::GhostWhite
static

Definition at line 433 of file Colour.hpp.

◆ Gold

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gold
static

Definition at line 633 of file Colour.hpp.

◆ Gold1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gold1
static

Definition at line 634 of file Colour.hpp.

◆ Gold2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gold2
static

Definition at line 635 of file Colour.hpp.

◆ Gold3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gold3
static

Definition at line 636 of file Colour.hpp.

◆ Gold4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gold4
static

Definition at line 637 of file Colour.hpp.

◆ Goldenrod

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Goldenrod
static

Definition at line 647 of file Colour.hpp.

◆ Goldenrod1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Goldenrod1
static

Definition at line 648 of file Colour.hpp.

◆ Goldenrod2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Goldenrod2
static

Definition at line 649 of file Colour.hpp.

◆ Goldenrod3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Goldenrod3
static

Definition at line 650 of file Colour.hpp.

◆ Goldenrod4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Goldenrod4
static

Definition at line 651 of file Colour.hpp.

◆ Gray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray
static

Definition at line 868 of file Colour.hpp.

◆ Gray0

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray0
static

Definition at line 970 of file Colour.hpp.

◆ Gray1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray1
static

Definition at line 967 of file Colour.hpp.

◆ Gray10

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray10
static

Definition at line 949 of file Colour.hpp.

◆ Gray100

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray100
static

Definition at line 758 of file Colour.hpp.

◆ Gray11

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray11
static

Definition at line 947 of file Colour.hpp.

◆ Gray12

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray12
static

Definition at line 945 of file Colour.hpp.

◆ Gray13

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray13
static

Definition at line 943 of file Colour.hpp.

◆ Gray14

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray14
static

Definition at line 941 of file Colour.hpp.

◆ Gray15

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray15
static

Definition at line 939 of file Colour.hpp.

◆ Gray16

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray16
static

Definition at line 937 of file Colour.hpp.

◆ Gray17

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray17
static

Definition at line 935 of file Colour.hpp.

◆ Gray18

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray18
static

Definition at line 933 of file Colour.hpp.

◆ Gray19

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray19
static

Definition at line 931 of file Colour.hpp.

◆ Gray2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray2
static

Definition at line 965 of file Colour.hpp.

◆ Gray20

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray20
static

Definition at line 929 of file Colour.hpp.

◆ Gray21

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray21
static

Definition at line 927 of file Colour.hpp.

◆ Gray22

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray22
static

Definition at line 925 of file Colour.hpp.

◆ Gray23

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray23
static

Definition at line 923 of file Colour.hpp.

◆ Gray24

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray24
static

Definition at line 921 of file Colour.hpp.

◆ Gray25

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray25
static

Definition at line 919 of file Colour.hpp.

◆ Gray26

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray26
static

Definition at line 917 of file Colour.hpp.

◆ Gray27

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray27
static

Definition at line 915 of file Colour.hpp.

◆ Gray28

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray28
static

Definition at line 913 of file Colour.hpp.

◆ Gray29

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray29
static

Definition at line 911 of file Colour.hpp.

◆ Gray3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray3
static

Definition at line 963 of file Colour.hpp.

◆ Gray30

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray30
static

Definition at line 909 of file Colour.hpp.

◆ Gray31

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray31
static

Definition at line 907 of file Colour.hpp.

◆ Gray32

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray32
static

Definition at line 905 of file Colour.hpp.

◆ Gray33

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray33
static

Definition at line 903 of file Colour.hpp.

◆ Gray34

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray34
static

Definition at line 901 of file Colour.hpp.

◆ Gray35

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray35
static

Definition at line 899 of file Colour.hpp.

◆ Gray36

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray36
static

Definition at line 897 of file Colour.hpp.

◆ Gray37

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray37
static

Definition at line 895 of file Colour.hpp.

◆ Gray38

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray38
static

Definition at line 893 of file Colour.hpp.

◆ Gray39

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray39
static

Definition at line 891 of file Colour.hpp.

◆ Gray4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray4
static

Definition at line 961 of file Colour.hpp.

◆ Gray40

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray40
static

Definition at line 889 of file Colour.hpp.

◆ Gray41

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray41
static

Definition at line 887 of file Colour.hpp.

◆ Gray42

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray42
static

Definition at line 883 of file Colour.hpp.

◆ Gray43

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray43
static

Definition at line 881 of file Colour.hpp.

◆ Gray44

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray44
static

Definition at line 879 of file Colour.hpp.

◆ Gray45

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray45
static

Definition at line 877 of file Colour.hpp.

◆ Gray46

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray46
static

Definition at line 875 of file Colour.hpp.

◆ Gray47

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray47
static

Definition at line 873 of file Colour.hpp.

◆ Gray48

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray48
static

Definition at line 871 of file Colour.hpp.

◆ Gray49

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray49
static

Definition at line 869 of file Colour.hpp.

◆ Gray5

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray5
static

Definition at line 959 of file Colour.hpp.

◆ Gray50

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray50
static

Definition at line 866 of file Colour.hpp.

◆ Gray51

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray51
static

Definition at line 863 of file Colour.hpp.

◆ Gray52

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray52
static

Definition at line 861 of file Colour.hpp.

◆ Gray53

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray53
static

Definition at line 859 of file Colour.hpp.

◆ Gray54

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray54
static

Definition at line 857 of file Colour.hpp.

◆ Gray55

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray55
static

Definition at line 855 of file Colour.hpp.

◆ Gray56

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray56
static

Definition at line 853 of file Colour.hpp.

◆ Gray57

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray57
static

Definition at line 851 of file Colour.hpp.

◆ Gray58

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray58
static

Definition at line 849 of file Colour.hpp.

◆ Gray59

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray59
static

Definition at line 847 of file Colour.hpp.

◆ Gray6

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray6
static

Definition at line 957 of file Colour.hpp.

◆ Gray60

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray60
static

Definition at line 845 of file Colour.hpp.

◆ Gray61

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray61
static

Definition at line 843 of file Colour.hpp.

◆ Gray62

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray62
static

Definition at line 841 of file Colour.hpp.

◆ Gray63

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray63
static

Definition at line 839 of file Colour.hpp.

◆ Gray64

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray64
static

Definition at line 837 of file Colour.hpp.

◆ Gray65

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray65
static

Definition at line 835 of file Colour.hpp.

◆ Gray66

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray66
static

Definition at line 833 of file Colour.hpp.

◆ Gray67

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray67
static

Definition at line 829 of file Colour.hpp.

◆ Gray68

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray68
static

Definition at line 827 of file Colour.hpp.

◆ Gray69

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray69
static

Definition at line 825 of file Colour.hpp.

◆ Gray7

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray7
static

Definition at line 955 of file Colour.hpp.

◆ Gray70

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray70
static

Definition at line 823 of file Colour.hpp.

◆ Gray71

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray71
static

Definition at line 821 of file Colour.hpp.

◆ Gray72

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray72
static

Definition at line 819 of file Colour.hpp.

◆ Gray73

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray73
static

Definition at line 817 of file Colour.hpp.

◆ Gray74

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray74
static

Definition at line 815 of file Colour.hpp.

◆ Gray75

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray75
static

Definition at line 813 of file Colour.hpp.

◆ Gray76

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray76
static

Definition at line 810 of file Colour.hpp.

◆ Gray77

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray77
static

Definition at line 808 of file Colour.hpp.

◆ Gray78

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray78
static

Definition at line 806 of file Colour.hpp.

◆ Gray79

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray79
static

Definition at line 804 of file Colour.hpp.

◆ Gray8

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray8
static

Definition at line 953 of file Colour.hpp.

◆ Gray80

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray80
static

Definition at line 802 of file Colour.hpp.

◆ Gray81

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray81
static

Definition at line 800 of file Colour.hpp.

◆ Gray82

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray82
static

Definition at line 798 of file Colour.hpp.

◆ Gray83

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray83
static

Definition at line 794 of file Colour.hpp.

◆ Gray84

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray84
static

Definition at line 792 of file Colour.hpp.

◆ Gray85

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray85
static

Definition at line 790 of file Colour.hpp.

◆ Gray86

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray86
static

Definition at line 788 of file Colour.hpp.

◆ Gray87

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray87
static

Definition at line 785 of file Colour.hpp.

◆ Gray88

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray88
static

Definition at line 783 of file Colour.hpp.

◆ Gray89

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray89
static

Definition at line 781 of file Colour.hpp.

◆ Gray9

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray9
static

Definition at line 951 of file Colour.hpp.

◆ Gray90

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray90
static

Definition at line 779 of file Colour.hpp.

◆ Gray91

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray91
static

Definition at line 777 of file Colour.hpp.

◆ Gray92

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray92
static

Definition at line 775 of file Colour.hpp.

◆ Gray93

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray93
static

Definition at line 773 of file Colour.hpp.

◆ Gray94

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray94
static

Definition at line 771 of file Colour.hpp.

◆ Gray95

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray95
static

Definition at line 769 of file Colour.hpp.

◆ Gray96

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray96
static

Definition at line 766 of file Colour.hpp.

◆ Gray97

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray97
static

Definition at line 764 of file Colour.hpp.

◆ Gray98

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray98
static

Definition at line 762 of file Colour.hpp.

◆ Gray99

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Gray99
static

Definition at line 760 of file Colour.hpp.

◆ Green

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Green
static

Definition at line 581 of file Colour.hpp.

◆ Green1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Green1
static

Definition at line 572 of file Colour.hpp.

◆ Green2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Green2
static

Definition at line 576 of file Colour.hpp.

◆ Green3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Green3
static

Definition at line 578 of file Colour.hpp.

◆ Green4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Green4
static

Definition at line 580 of file Colour.hpp.

◆ GreenYellow

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::GreenYellow
static

Definition at line 589 of file Colour.hpp.

◆ Grey0

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey0
static

Definition at line 971 of file Colour.hpp.

◆ Grey1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey1
static

Definition at line 968 of file Colour.hpp.

◆ Grey10

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey10
static

Definition at line 950 of file Colour.hpp.

◆ Grey100

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey100
static

Definition at line 759 of file Colour.hpp.

◆ Grey11

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey11
static

Definition at line 948 of file Colour.hpp.

◆ Grey12

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey12
static

Definition at line 946 of file Colour.hpp.

◆ Grey13

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey13
static

Definition at line 944 of file Colour.hpp.

◆ Grey14

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey14
static

Definition at line 942 of file Colour.hpp.

◆ Grey15

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey15
static

Definition at line 940 of file Colour.hpp.

◆ Grey16

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey16
static

Definition at line 938 of file Colour.hpp.

◆ Grey17

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey17
static

Definition at line 936 of file Colour.hpp.

◆ Grey18

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey18
static

Definition at line 934 of file Colour.hpp.

◆ Grey19

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey19
static

Definition at line 932 of file Colour.hpp.

◆ Grey2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey2
static

Definition at line 966 of file Colour.hpp.

◆ Grey20

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey20
static

Definition at line 930 of file Colour.hpp.

◆ Grey21

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey21
static

Definition at line 928 of file Colour.hpp.

◆ Grey22

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey22
static

Definition at line 926 of file Colour.hpp.

◆ Grey23

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey23
static

Definition at line 924 of file Colour.hpp.

◆ Grey24

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey24
static

Definition at line 922 of file Colour.hpp.

◆ Grey25

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey25
static

Definition at line 920 of file Colour.hpp.

◆ Grey26

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey26
static

Definition at line 918 of file Colour.hpp.

◆ Grey27

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey27
static

Definition at line 916 of file Colour.hpp.

◆ Grey28

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey28
static

Definition at line 914 of file Colour.hpp.

◆ Grey29

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey29
static

Definition at line 912 of file Colour.hpp.

◆ Grey3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey3
static

Definition at line 964 of file Colour.hpp.

◆ Grey30

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey30
static

Definition at line 910 of file Colour.hpp.

◆ Grey31

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey31
static

Definition at line 908 of file Colour.hpp.

◆ Grey32

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey32
static

Definition at line 906 of file Colour.hpp.

◆ Grey33

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey33
static

Definition at line 904 of file Colour.hpp.

◆ Grey34

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey34
static

Definition at line 902 of file Colour.hpp.

◆ Grey35

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey35
static

Definition at line 900 of file Colour.hpp.

◆ Grey36

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey36
static

Definition at line 898 of file Colour.hpp.

◆ Grey37

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey37
static

Definition at line 896 of file Colour.hpp.

◆ Grey38

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey38
static

Definition at line 894 of file Colour.hpp.

◆ Grey39

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey39
static

Definition at line 892 of file Colour.hpp.

◆ Grey4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey4
static

Definition at line 962 of file Colour.hpp.

◆ Grey40

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey40
static

Definition at line 890 of file Colour.hpp.

◆ Grey41

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey41
static

Definition at line 888 of file Colour.hpp.

◆ Grey42

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey42
static

Definition at line 884 of file Colour.hpp.

◆ Grey43

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey43
static

Definition at line 882 of file Colour.hpp.

◆ Grey44

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey44
static

Definition at line 880 of file Colour.hpp.

◆ Grey45

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey45
static

Definition at line 878 of file Colour.hpp.

◆ Grey46

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey46
static

Definition at line 876 of file Colour.hpp.

◆ Grey47

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey47
static

Definition at line 874 of file Colour.hpp.

◆ Grey48

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey48
static

Definition at line 872 of file Colour.hpp.

◆ Grey49

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey49
static

Definition at line 870 of file Colour.hpp.

◆ Grey5

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey5
static

Definition at line 960 of file Colour.hpp.

◆ Grey50

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey50
static

Definition at line 867 of file Colour.hpp.

◆ Grey51

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey51
static

Definition at line 864 of file Colour.hpp.

◆ Grey52

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey52
static

Definition at line 862 of file Colour.hpp.

◆ Grey53

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey53
static

Definition at line 860 of file Colour.hpp.

◆ Grey54

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey54
static

Definition at line 858 of file Colour.hpp.

◆ Grey55

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey55
static

Definition at line 856 of file Colour.hpp.

◆ Grey56

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey56
static

Definition at line 854 of file Colour.hpp.

◆ Grey57

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey57
static

Definition at line 852 of file Colour.hpp.

◆ Grey58

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey58
static

Definition at line 850 of file Colour.hpp.

◆ Grey59

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey59
static

Definition at line 848 of file Colour.hpp.

◆ Grey6

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey6
static

Definition at line 958 of file Colour.hpp.

◆ Grey60

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey60
static

Definition at line 846 of file Colour.hpp.

◆ Grey61

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey61
static

Definition at line 844 of file Colour.hpp.

◆ Grey62

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey62
static

Definition at line 842 of file Colour.hpp.

◆ Grey63

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey63
static

Definition at line 840 of file Colour.hpp.

◆ Grey64

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey64
static

Definition at line 838 of file Colour.hpp.

◆ Grey65

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey65
static

Definition at line 836 of file Colour.hpp.

◆ Grey66

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey66
static

Definition at line 834 of file Colour.hpp.

◆ Grey67

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey67
static

Definition at line 830 of file Colour.hpp.

◆ Grey68

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey68
static

Definition at line 828 of file Colour.hpp.

◆ Grey69

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey69
static

Definition at line 826 of file Colour.hpp.

◆ Grey7

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey7
static

Definition at line 956 of file Colour.hpp.

◆ Grey70

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey70
static

Definition at line 824 of file Colour.hpp.

◆ Grey71

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey71
static

Definition at line 822 of file Colour.hpp.

◆ Grey72

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey72
static

Definition at line 820 of file Colour.hpp.

◆ Grey73

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey73
static

Definition at line 818 of file Colour.hpp.

◆ Grey74

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey74
static

Definition at line 816 of file Colour.hpp.

◆ Grey75

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey75
static

Definition at line 814 of file Colour.hpp.

◆ Grey76

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey76
static

Definition at line 811 of file Colour.hpp.

◆ Grey77

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey77
static

Definition at line 809 of file Colour.hpp.

◆ Grey78

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey78
static

Definition at line 807 of file Colour.hpp.

◆ Grey79

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey79
static

Definition at line 805 of file Colour.hpp.

◆ Grey8

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey8
static

Definition at line 954 of file Colour.hpp.

◆ Grey80

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey80
static

Definition at line 803 of file Colour.hpp.

◆ Grey81

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey81
static

Definition at line 801 of file Colour.hpp.

◆ Grey82

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey82
static

Definition at line 799 of file Colour.hpp.

◆ Grey83

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey83
static

Definition at line 795 of file Colour.hpp.

◆ Grey84

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey84
static

Definition at line 793 of file Colour.hpp.

◆ Grey85

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey85
static

Definition at line 791 of file Colour.hpp.

◆ Grey86

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey86
static

Definition at line 789 of file Colour.hpp.

◆ Grey87

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey87
static

Definition at line 786 of file Colour.hpp.

◆ Grey88

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey88
static

Definition at line 784 of file Colour.hpp.

◆ Grey89

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey89
static

Definition at line 782 of file Colour.hpp.

◆ Grey9

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey9
static

Definition at line 952 of file Colour.hpp.

◆ Grey90

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey90
static

Definition at line 780 of file Colour.hpp.

◆ Grey91

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey91
static

Definition at line 778 of file Colour.hpp.

◆ Grey92

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey92
static

Definition at line 776 of file Colour.hpp.

◆ Grey93

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey93
static

Definition at line 774 of file Colour.hpp.

◆ Grey94

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey94
static

Definition at line 772 of file Colour.hpp.

◆ Grey95

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey95
static

Definition at line 770 of file Colour.hpp.

◆ Grey96

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey96
static

Definition at line 767 of file Colour.hpp.

◆ Grey97

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey97
static

Definition at line 765 of file Colour.hpp.

◆ Grey98

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey98
static

Definition at line 763 of file Colour.hpp.

◆ Grey99

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Grey99
static

Definition at line 761 of file Colour.hpp.

◆ Honeydew

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Honeydew
static

Definition at line 558 of file Colour.hpp.

◆ Honeydew1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Honeydew1
static

Definition at line 559 of file Colour.hpp.

◆ Honeydew2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Honeydew2
static

Definition at line 560 of file Colour.hpp.

◆ Honeydew3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Honeydew3
static

Definition at line 565 of file Colour.hpp.

◆ Honeydew4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Honeydew4
static

Definition at line 571 of file Colour.hpp.

◆ HotPink

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::HotPink
static

Definition at line 366 of file Colour.hpp.

◆ HotPink1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::HotPink1
static

Definition at line 364 of file Colour.hpp.

◆ HotPink2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::HotPink2
static

Definition at line 363 of file Colour.hpp.

◆ HotPink3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::HotPink3
static

Definition at line 358 of file Colour.hpp.

◆ HotPink4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::HotPink4
static

Definition at line 365 of file Colour.hpp.

◆ IndianRed

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::IndianRed
static

Definition at line 317 of file Colour.hpp.

◆ IndianRed1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::IndianRed1
static

Definition at line 310 of file Colour.hpp.

◆ IndianRed2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::IndianRed2
static

Definition at line 312 of file Colour.hpp.

◆ IndianRed3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::IndianRed3
static

Definition at line 318 of file Colour.hpp.

◆ IndianRed4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::IndianRed4
static

Definition at line 330 of file Colour.hpp.

◆ Indigo

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Indigo
static

Definition at line 414 of file Colour.hpp.

◆ Ivory

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Ivory
static

Definition at line 601 of file Colour.hpp.

◆ Ivory1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Ivory1
static

Definition at line 602 of file Colour.hpp.

◆ Ivory2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Ivory2
static

Definition at line 606 of file Colour.hpp.

◆ Ivory3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Ivory3
static

Definition at line 609 of file Colour.hpp.

◆ Ivory4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Ivory4
static

Definition at line 611 of file Colour.hpp.

◆ Khaki

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Khaki
static

Definition at line 628 of file Colour.hpp.

◆ Khaki1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Khaki1
static

Definition at line 622 of file Colour.hpp.

◆ Khaki2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Khaki2
static

Definition at line 620 of file Colour.hpp.

◆ Khaki3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Khaki3
static

Definition at line 623 of file Colour.hpp.

◆ Khaki4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Khaki4
static

Definition at line 624 of file Colour.hpp.

◆ Lavender

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Lavender
static

Definition at line 434 of file Colour.hpp.

◆ LavenderBlush

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LavenderBlush
static

Definition at line 352 of file Colour.hpp.

◆ LavenderBlush1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LavenderBlush1
static

Definition at line 353 of file Colour.hpp.

◆ LavenderBlush2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LavenderBlush2
static

Definition at line 355 of file Colour.hpp.

◆ LavenderBlush3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LavenderBlush3
static

Definition at line 354 of file Colour.hpp.

◆ LavenderBlush4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LavenderBlush4
static

Definition at line 356 of file Colour.hpp.

◆ LawnGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LawnGreen
static

Definition at line 583 of file Colour.hpp.

◆ LemonChiffon

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LemonChiffon
static

Definition at line 626 of file Colour.hpp.

◆ LemonChiffon1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LemonChiffon1
static

Definition at line 627 of file Colour.hpp.

◆ LemonChiffon2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LemonChiffon2
static

Definition at line 630 of file Colour.hpp.

◆ LemonChiffon3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LemonChiffon3
static

Definition at line 629 of file Colour.hpp.

◆ LemonChiffon4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LemonChiffon4
static

Definition at line 621 of file Colour.hpp.

◆ LightBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightBlue
static

Definition at line 493 of file Colour.hpp.

◆ LightBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightBlue1
static

Definition at line 491 of file Colour.hpp.

◆ LightBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightBlue2
static

Definition at line 492 of file Colour.hpp.

◆ LightBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightBlue3
static

Definition at line 485 of file Colour.hpp.

◆ LightBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightBlue4
static

Definition at line 494 of file Colour.hpp.

◆ LightCoral

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightCoral
static

Definition at line 309 of file Colour.hpp.

◆ LightCyan

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightCyan
static

Definition at line 508 of file Colour.hpp.

◆ LightCyan1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightCyan1
static

Definition at line 509 of file Colour.hpp.

◆ LightCyan2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightCyan2
static

Definition at line 511 of file Colour.hpp.

◆ LightCyan3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightCyan3
static

Definition at line 517 of file Colour.hpp.

◆ LightCyan4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightCyan4
static

Definition at line 522 of file Colour.hpp.

◆ LightGoldenrod

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGoldenrod
static

Definition at line 638 of file Colour.hpp.

◆ LightGoldenrod1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGoldenrod1
static

Definition at line 640 of file Colour.hpp.

◆ LightGoldenrod2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGoldenrod2
static

Definition at line 642 of file Colour.hpp.

◆ LightGoldenrod3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGoldenrod3
static

Definition at line 641 of file Colour.hpp.

◆ LightGoldenrod4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGoldenrod4
static

Definition at line 639 of file Colour.hpp.

◆ LightGoldenrodYellow

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGoldenrodYellow
static

Definition at line 607 of file Colour.hpp.

◆ LightGray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGray
static

Definition at line 796 of file Colour.hpp.

◆ LightGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGreen
static

Definition at line 566 of file Colour.hpp.

◆ LightGrey

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightGrey
static

Definition at line 797 of file Colour.hpp.

◆ LightPink

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightPink
static

Definition at line 340 of file Colour.hpp.

◆ LightPink1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightPink1
static

Definition at line 336 of file Colour.hpp.

◆ LightPink2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightPink2
static

Definition at line 339 of file Colour.hpp.

◆ LightPink3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightPink3
static

Definition at line 337 of file Colour.hpp.

◆ LightPink4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightPink4
static

Definition at line 338 of file Colour.hpp.

◆ LightSalmon

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSalmon
static

Definition at line 727 of file Colour.hpp.

◆ LightSalmon1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSalmon1
static

Definition at line 728 of file Colour.hpp.

◆ LightSalmon2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSalmon2
static

Definition at line 730 of file Colour.hpp.

◆ LightSalmon3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSalmon3
static

Definition at line 726 of file Colour.hpp.

◆ LightSalmon4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSalmon4
static

Definition at line 729 of file Colour.hpp.

◆ LightSeaGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSeaGreen
static

Definition at line 536 of file Colour.hpp.

◆ LightSkyBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSkyBlue
static

Definition at line 479 of file Colour.hpp.

◆ LightSkyBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSkyBlue1
static

Definition at line 481 of file Colour.hpp.

◆ LightSkyBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSkyBlue2
static

Definition at line 482 of file Colour.hpp.

◆ LightSkyBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSkyBlue3
static

Definition at line 483 of file Colour.hpp.

◆ LightSkyBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSkyBlue4
static

Definition at line 480 of file Colour.hpp.

◆ LightSlateBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSlateBlue
static

Definition at line 426 of file Colour.hpp.

◆ LightSlateGray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSlateGray
static

Definition at line 460 of file Colour.hpp.

◆ LightSlateGrey

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSlateGrey
static

Definition at line 461 of file Colour.hpp.

◆ LightSteelBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSteelBlue
static

Definition at line 451 of file Colour.hpp.

◆ LightSteelBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSteelBlue1
static

Definition at line 452 of file Colour.hpp.

◆ LightSteelBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSteelBlue2
static

Definition at line 453 of file Colour.hpp.

◆ LightSteelBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSteelBlue3
static

Definition at line 454 of file Colour.hpp.

◆ LightSteelBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightSteelBlue4
static

Definition at line 455 of file Colour.hpp.

◆ LightYellow

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightYellow
static

Definition at line 603 of file Colour.hpp.

◆ LightYellow1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightYellow1
static

Definition at line 604 of file Colour.hpp.

◆ LightYellow2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightYellow2
static

Definition at line 608 of file Colour.hpp.

◆ LightYellow3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightYellow3
static

Definition at line 610 of file Colour.hpp.

◆ LightYellow4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LightYellow4
static

Definition at line 612 of file Colour.hpp.

◆ Lime

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Lime
static

Definition at line 573 of file Colour.hpp.

◆ LimeGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::LimeGreen
static

Definition at line 574 of file Colour.hpp.

◆ Linen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Linen
static

Definition at line 695 of file Colour.hpp.

◆ Magenta

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Magenta
static

Definition at line 394 of file Colour.hpp.

◆ Magenta1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Magenta1
static

Definition at line 395 of file Colour.hpp.

◆ Magenta2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Magenta2
static

Definition at line 397 of file Colour.hpp.

◆ Magenta3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Magenta3
static

Definition at line 398 of file Colour.hpp.

◆ Magenta4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Magenta4
static

Definition at line 400 of file Colour.hpp.

◆ Maroon

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Maroon
static

Definition at line 335 of file Colour.hpp.

◆ Maroon1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Maroon1
static

Definition at line 372 of file Colour.hpp.

◆ Maroon2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Maroon2
static

Definition at line 373 of file Colour.hpp.

◆ Maroon3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Maroon3
static

Definition at line 374 of file Colour.hpp.

◆ Maroon4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Maroon4
static

Definition at line 375 of file Colour.hpp.

◆ Maroon5

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Maroon5
static

Definition at line 357 of file Colour.hpp.

◆ MediumAquamarine

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumAquamarine
static

Definition at line 543 of file Colour.hpp.

◆ MediumBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumBlue
static

Definition at line 439 of file Colour.hpp.

◆ MediumForestGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumForestGreen
static

Definition at line 557 of file Colour.hpp.

◆ MediumGoldenRod

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumGoldenRod
static

Definition at line 631 of file Colour.hpp.

◆ MediumOrchid

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumOrchid
static

Definition at line 402 of file Colour.hpp.

◆ MediumOrchid1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumOrchid1
static

Definition at line 403 of file Colour.hpp.

◆ MediumOrchid2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumOrchid2
static

Definition at line 404 of file Colour.hpp.

◆ MediumOrchid3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumOrchid3
static

Definition at line 405 of file Colour.hpp.

◆ MediumOrchid4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumOrchid4
static

Definition at line 406 of file Colour.hpp.

◆ MediumPurple

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumPurple
static

Definition at line 420 of file Colour.hpp.

◆ MediumPurple1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumPurple1
static

Definition at line 421 of file Colour.hpp.

◆ MediumPurple2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumPurple2
static

Definition at line 422 of file Colour.hpp.

◆ MediumPurple3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumPurple3
static

Definition at line 423 of file Colour.hpp.

◆ MediumPurple4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumPurple4
static

Definition at line 424 of file Colour.hpp.

◆ MediumSeaGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumSeaGreen
static

Definition at line 551 of file Colour.hpp.

◆ MediumSlateBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumSlateBlue
static

Definition at line 427 of file Colour.hpp.

◆ MediumSpringGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumSpringGreen
static

Definition at line 544 of file Colour.hpp.

◆ MediumTurquoise

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumTurquoise
static

Definition at line 535 of file Colour.hpp.

◆ MediumVioletRed

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MediumVioletRed
static

Definition at line 376 of file Colour.hpp.

◆ MidnightBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MidnightBlue
static

Definition at line 442 of file Colour.hpp.

◆ MintCream

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MintCream
static

Definition at line 545 of file Colour.hpp.

◆ MistyRose

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MistyRose
static

Definition at line 753 of file Colour.hpp.

◆ MistyRose1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MistyRose1
static

Definition at line 754 of file Colour.hpp.

◆ MistyRose2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MistyRose2
static

Definition at line 752 of file Colour.hpp.

◆ MistyRose3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MistyRose3
static

Definition at line 756 of file Colour.hpp.

◆ MistyRose4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::MistyRose4
static

Definition at line 751 of file Colour.hpp.

◆ Moccasin

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Moccasin
static

Definition at line 669 of file Colour.hpp.

◆ NavajoWhite

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::NavajoWhite
static

Definition at line 673 of file Colour.hpp.

◆ NavajoWhite1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::NavajoWhite1
static

Definition at line 674 of file Colour.hpp.

◆ NavajoWhite2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::NavajoWhite2
static

Definition at line 675 of file Colour.hpp.

◆ NavajoWhite3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::NavajoWhite3
static

Definition at line 671 of file Colour.hpp.

◆ NavajoWhite4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::NavajoWhite4
static

Definition at line 676 of file Colour.hpp.

◆ Navy

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Navy
static

Definition at line 443 of file Colour.hpp.

◆ NavyBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::NavyBlue
static

Definition at line 444 of file Colour.hpp.

◆ None

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::None
static

Definition at line 973 of file Colour.hpp.

◆ OldLace

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OldLace
static

Definition at line 659 of file Colour.hpp.

◆ Olive

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Olive
static

Definition at line 618 of file Colour.hpp.

◆ OliveDrab

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OliveDrab
static

Definition at line 595 of file Colour.hpp.

◆ OliveDrab1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OliveDrab1
static

Definition at line 596 of file Colour.hpp.

◆ OliveDrab2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OliveDrab2
static

Definition at line 597 of file Colour.hpp.

◆ OliveDrab3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OliveDrab3
static

Definition at line 598 of file Colour.hpp.

◆ OliveDrab4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OliveDrab4
static

Definition at line 600 of file Colour.hpp.

◆ Opaque

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Opaque
static

Definition at line 972 of file Colour.hpp.

◆ Orange

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orange
static

Definition at line 663 of file Colour.hpp.

◆ Orange1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orange1
static

Definition at line 664 of file Colour.hpp.

◆ Orange2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orange2
static

Definition at line 665 of file Colour.hpp.

◆ Orange3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orange3
static

Definition at line 666 of file Colour.hpp.

◆ Orange4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orange4
static

Definition at line 667 of file Colour.hpp.

◆ OrangeRed

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OrangeRed
static

Definition at line 732 of file Colour.hpp.

◆ OrangeRed1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OrangeRed1
static

Definition at line 733 of file Colour.hpp.

◆ OrangeRed2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OrangeRed2
static

Definition at line 734 of file Colour.hpp.

◆ OrangeRed3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OrangeRed3
static

Definition at line 735 of file Colour.hpp.

◆ OrangeRed4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::OrangeRed4
static

Definition at line 736 of file Colour.hpp.

◆ Orchid

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orchid
static

Definition at line 379 of file Colour.hpp.

◆ Orchid1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orchid1
static

Definition at line 380 of file Colour.hpp.

◆ Orchid2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orchid2
static

Definition at line 378 of file Colour.hpp.

◆ Orchid3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orchid3
static

Definition at line 381 of file Colour.hpp.

◆ Orchid4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Orchid4
static

Definition at line 382 of file Colour.hpp.

◆ PaleGoldenrod

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleGoldenrod
static

Definition at line 625 of file Colour.hpp.

◆ PaleGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleGreen
static

Definition at line 564 of file Colour.hpp.

◆ PaleGreen1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleGreen1
static

Definition at line 563 of file Colour.hpp.

◆ PaleGreen2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleGreen2
static

Definition at line 567 of file Colour.hpp.

◆ PaleGreen3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleGreen3
static

Definition at line 570 of file Colour.hpp.

◆ PaleGreen4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleGreen4
static

Definition at line 577 of file Colour.hpp.

◆ PaleTurquoise

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleTurquoise
static

Definition at line 513 of file Colour.hpp.

◆ PaleTurquoise1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleTurquoise1
static

Definition at line 512 of file Colour.hpp.

◆ PaleTurquoise2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleTurquoise2
static

Definition at line 514 of file Colour.hpp.

◆ PaleTurquoise3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleTurquoise3
static

Definition at line 519 of file Colour.hpp.

◆ PaleTurquoise4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleTurquoise4
static

Definition at line 526 of file Colour.hpp.

◆ PaleVioletRed

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleVioletRed
static

Definition at line 348 of file Colour.hpp.

◆ PaleVioletRed1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleVioletRed1
static

Definition at line 350 of file Colour.hpp.

◆ PaleVioletRed2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleVioletRed2
static

Definition at line 349 of file Colour.hpp.

◆ PaleVioletRed3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleVioletRed3
static

Definition at line 351 of file Colour.hpp.

◆ PaleVioletRed4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PaleVioletRed4
static

Definition at line 347 of file Colour.hpp.

◆ PapayaWhip

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PapayaWhip
static

Definition at line 670 of file Colour.hpp.

◆ PeachPuff

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PeachPuff
static

Definition at line 704 of file Colour.hpp.

◆ PeachPuff1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PeachPuff1
static

Definition at line 705 of file Colour.hpp.

◆ PeachPuff2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PeachPuff2
static

Definition at line 707 of file Colour.hpp.

◆ PeachPuff3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PeachPuff3
static

Definition at line 708 of file Colour.hpp.

◆ PeachPuff4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PeachPuff4
static

Definition at line 706 of file Colour.hpp.

◆ Peru

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Peru
static

Definition at line 699 of file Colour.hpp.

◆ Pink

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Pink
static

Definition at line 341 of file Colour.hpp.

◆ Pink1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Pink1
static

Definition at line 343 of file Colour.hpp.

◆ Pink2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Pink2
static

Definition at line 344 of file Colour.hpp.

◆ Pink3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Pink3
static

Definition at line 345 of file Colour.hpp.

◆ Pink4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Pink4
static

Definition at line 346 of file Colour.hpp.

◆ Plum

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Plum
static

Definition at line 389 of file Colour.hpp.

◆ Plum1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Plum1
static

Definition at line 385 of file Colour.hpp.

◆ Plum2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Plum2
static

Definition at line 386 of file Colour.hpp.

◆ Plum3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Plum3
static

Definition at line 391 of file Colour.hpp.

◆ Plum4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Plum4
static

Definition at line 396 of file Colour.hpp.

◆ PowderBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::PowderBlue
static

Definition at line 495 of file Colour.hpp.

◆ Purple

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Purple
static

Definition at line 401 of file Colour.hpp.

◆ Purple1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Purple1
static

Definition at line 419 of file Colour.hpp.

◆ Purple2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Purple2
static

Definition at line 416 of file Colour.hpp.

◆ Purple3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Purple3
static

Definition at line 417 of file Colour.hpp.

◆ Purple4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Purple4
static

Definition at line 418 of file Colour.hpp.

◆ Purple5

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Purple5
static

Definition at line 413 of file Colour.hpp.

◆ Red

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Red
static

Definition at line 322 of file Colour.hpp.

◆ Red1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Red1
static

Definition at line 323 of file Colour.hpp.

◆ Red2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Red2
static

Definition at line 326 of file Colour.hpp.

◆ Red3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Red3
static

Definition at line 329 of file Colour.hpp.

◆ Red4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Red4
static

Definition at line 334 of file Colour.hpp.

◆ RosyBrown

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RosyBrown
static

Definition at line 313 of file Colour.hpp.

◆ RosyBrown1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RosyBrown1
static

Definition at line 306 of file Colour.hpp.

◆ RosyBrown2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RosyBrown2
static

Definition at line 307 of file Colour.hpp.

◆ RosyBrown3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RosyBrown3
static

Definition at line 311 of file Colour.hpp.

◆ RosyBrown4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RosyBrown4
static

Definition at line 324 of file Colour.hpp.

◆ RoyalBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RoyalBlue
static

Definition at line 445 of file Colour.hpp.

◆ RoyalBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RoyalBlue1
static

Definition at line 446 of file Colour.hpp.

◆ RoyalBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RoyalBlue2
static

Definition at line 447 of file Colour.hpp.

◆ RoyalBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RoyalBlue3
static

Definition at line 448 of file Colour.hpp.

◆ RoyalBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::RoyalBlue4
static

Definition at line 449 of file Colour.hpp.

◆ SaddleBrown

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SaddleBrown
static

Definition at line 718 of file Colour.hpp.

◆ Salmon

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Salmon
static

Definition at line 755 of file Colour.hpp.

◆ Salmon1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Salmon1
static

Definition at line 738 of file Colour.hpp.

◆ Salmon2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Salmon2
static

Definition at line 739 of file Colour.hpp.

◆ Salmon3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Salmon3
static

Definition at line 740 of file Colour.hpp.

◆ Salmon4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Salmon4
static

Definition at line 741 of file Colour.hpp.

◆ SandyBrown

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SandyBrown
static

Definition at line 709 of file Colour.hpp.

◆ SeaGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SeaGreen
static

Definition at line 552 of file Colour.hpp.

◆ SeaGreen1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SeaGreen1
static

Definition at line 554 of file Colour.hpp.

◆ SeaGreen2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SeaGreen2
static

Definition at line 556 of file Colour.hpp.

◆ SeaGreen3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SeaGreen3
static

Definition at line 553 of file Colour.hpp.

◆ SeaGreen4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SeaGreen4
static

Definition at line 555 of file Colour.hpp.

◆ Seashell

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Seashell
static

Definition at line 719 of file Colour.hpp.

◆ Seashell1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Seashell1
static

Definition at line 720 of file Colour.hpp.

◆ Seashell2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Seashell2
static

Definition at line 711 of file Colour.hpp.

◆ Seashell3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Seashell3
static

Definition at line 712 of file Colour.hpp.

◆ Seashell4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Seashell4
static

Definition at line 710 of file Colour.hpp.

◆ Sienna

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Sienna
static

Definition at line 722 of file Colour.hpp.

◆ Sienna1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Sienna1
static

Definition at line 723 of file Colour.hpp.

◆ Sienna2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Sienna2
static

Definition at line 724 of file Colour.hpp.

◆ Sienna3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Sienna3
static

Definition at line 725 of file Colour.hpp.

◆ Sienna4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Sienna4
static

Definition at line 721 of file Colour.hpp.

◆ Silver

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Silver
static

Definition at line 812 of file Colour.hpp.

◆ SkyBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SkyBlue
static

Definition at line 484 of file Colour.hpp.

◆ SkyBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SkyBlue1
static

Definition at line 476 of file Colour.hpp.

◆ SkyBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SkyBlue2
static

Definition at line 477 of file Colour.hpp.

◆ SkyBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SkyBlue3
static

Definition at line 478 of file Colour.hpp.

◆ SkyBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SkyBlue4
static

Definition at line 475 of file Colour.hpp.

◆ SlateBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateBlue
static

Definition at line 428 of file Colour.hpp.

◆ SlateBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateBlue1
static

Definition at line 429 of file Colour.hpp.

◆ SlateBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateBlue2
static

Definition at line 430 of file Colour.hpp.

◆ SlateBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateBlue3
static

Definition at line 431 of file Colour.hpp.

◆ SlateBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateBlue4
static

Definition at line 432 of file Colour.hpp.

◆ SlateGray

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateGray
static

Definition at line 462 of file Colour.hpp.

◆ SlateGray1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateGray1
static

Definition at line 457 of file Colour.hpp.

◆ SlateGray2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateGray2
static

Definition at line 458 of file Colour.hpp.

◆ SlateGray3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateGray3
static

Definition at line 459 of file Colour.hpp.

◆ SlateGray4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateGray4
static

Definition at line 456 of file Colour.hpp.

◆ SlateGrey

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SlateGrey
static

Definition at line 463 of file Colour.hpp.

◆ Snow

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Snow
static

Definition at line 303 of file Colour.hpp.

◆ Snow1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Snow1
static

Definition at line 304 of file Colour.hpp.

◆ Snow2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Snow2
static

Definition at line 305 of file Colour.hpp.

◆ Snow3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Snow3
static

Definition at line 308 of file Colour.hpp.

◆ Snow4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Snow4
static

Definition at line 320 of file Colour.hpp.

◆ SpringGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SpringGreen
static

Definition at line 546 of file Colour.hpp.

◆ SpringGreen1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SpringGreen1
static

Definition at line 547 of file Colour.hpp.

◆ SpringGreen2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SpringGreen2
static

Definition at line 548 of file Colour.hpp.

◆ SpringGreen3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SpringGreen3
static

Definition at line 549 of file Colour.hpp.

◆ SpringGreen4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SpringGreen4
static

Definition at line 550 of file Colour.hpp.

◆ SteelBlue

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SteelBlue
static

Definition at line 471 of file Colour.hpp.

◆ SteelBlue1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SteelBlue1
static

Definition at line 472 of file Colour.hpp.

◆ SteelBlue2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SteelBlue2
static

Definition at line 473 of file Colour.hpp.

◆ SteelBlue3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SteelBlue3
static

Definition at line 474 of file Colour.hpp.

◆ SteelBlue4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::SteelBlue4
static

Definition at line 470 of file Colour.hpp.

◆ Tan

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tan
static

Definition at line 679 of file Colour.hpp.

◆ Tan1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tan1
static

Definition at line 700 of file Colour.hpp.

◆ Tan2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tan2
static

Definition at line 701 of file Colour.hpp.

◆ Tan3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tan3
static

Definition at line 702 of file Colour.hpp.

◆ Tan4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tan4
static

Definition at line 703 of file Colour.hpp.

◆ Teal

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Teal
static

Definition at line 532 of file Colour.hpp.

◆ Thistle

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Thistle
static

Definition at line 387 of file Colour.hpp.

◆ Thistle1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Thistle1
static

Definition at line 383 of file Colour.hpp.

◆ Thistle2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Thistle2
static

Definition at line 384 of file Colour.hpp.

◆ Thistle3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Thistle3
static

Definition at line 388 of file Colour.hpp.

◆ Thistle4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Thistle4
static

Definition at line 392 of file Colour.hpp.

◆ Tomato

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tomato
static

Definition at line 747 of file Colour.hpp.

◆ Tomato1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tomato1
static

Definition at line 748 of file Colour.hpp.

◆ Tomato2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tomato2
static

Definition at line 749 of file Colour.hpp.

◆ Tomato3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tomato3
static

Definition at line 750 of file Colour.hpp.

◆ Tomato4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Tomato4
static

Definition at line 746 of file Colour.hpp.

◆ Transparent

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Transparent
static

Definition at line 974 of file Colour.hpp.

◆ Turquoise

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Turquoise
static

Definition at line 537 of file Colour.hpp.

◆ Turquoise1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Turquoise1
static

Definition at line 500 of file Colour.hpp.

◆ Turquoise2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Turquoise2
static

Definition at line 501 of file Colour.hpp.

◆ Turquoise3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Turquoise3
static

Definition at line 502 of file Colour.hpp.

◆ Turquoise4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Turquoise4
static

Definition at line 503 of file Colour.hpp.

◆ Violet

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Violet
static

Definition at line 390 of file Colour.hpp.

◆ VioletRed

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::VioletRed
static

Definition at line 377 of file Colour.hpp.

◆ VioletRed1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::VioletRed1
static

Definition at line 360 of file Colour.hpp.

◆ VioletRed2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::VioletRed2
static

Definition at line 361 of file Colour.hpp.

◆ VioletRed3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::VioletRed3
static

Definition at line 359 of file Colour.hpp.

◆ VioletRed4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::VioletRed4
static

Definition at line 362 of file Colour.hpp.

◆ Wheat

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Wheat
static

Definition at line 660 of file Colour.hpp.

◆ Wheat1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Wheat1
static

Definition at line 661 of file Colour.hpp.

◆ Wheat2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Wheat2
static

Definition at line 658 of file Colour.hpp.

◆ Wheat3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Wheat3
static

Definition at line 662 of file Colour.hpp.

◆ Wheat4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Wheat4
static

Definition at line 668 of file Colour.hpp.

◆ White

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::White
static

Definition at line 757 of file Colour.hpp.

◆ WhiteSmoke

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::WhiteSmoke
static

Definition at line 768 of file Colour.hpp.

◆ Yellow

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Yellow
static

Definition at line 613 of file Colour.hpp.

◆ Yellow1

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Yellow1
static

Definition at line 614 of file Colour.hpp.

◆ Yellow2

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Yellow2
static

Definition at line 615 of file Colour.hpp.

◆ Yellow3

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Yellow3
static

Definition at line 616 of file Colour.hpp.

◆ Yellow4

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::Yellow4
static

Definition at line 617 of file Colour.hpp.

◆ YellowGreen

const GUI::ECS::Systems::Colour GUI::ECS::Systems::Colour::YellowGreen
static

Definition at line 599 of file Colour.hpp.


The documentation for this class was generated from the following files: