Color: Add named color "Cyan"

This commit is contained in:
Andreas Kling 2019-05-06 00:59:33 +02:00
parent 3bdb95e128
commit 6df3df62be
2 changed files with 2 additions and 0 deletions

View file

@ -14,6 +14,7 @@ Color::Color(NamedColor named)
case White: rgb = { 255, 255, 255 }; break;
case Red: rgb = { 255, 0, 0}; break;
case Green: rgb = { 0, 255, 0}; break;
case Cyan: rgb = { 0, 255, 255 }; break;
case Blue: rgb = { 0, 0, 255}; break;
case Yellow: rgb = { 255, 255, 0 }; break;
case Magenta: rgb = { 255, 0, 255 }; break;

View file

@ -17,6 +17,7 @@ public:
White,
Red,
Green,
Cyan,
Blue,
Yellow,
Magenta,