1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:38:10 +00:00

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;