diff --git a/Libraries/LibDraw/Color.cpp b/Libraries/LibDraw/Color.cpp index aea16f6e2a..2596f65855 100644 --- a/Libraries/LibDraw/Color.cpp +++ b/Libraries/LibDraw/Color.cpp @@ -27,6 +27,12 @@ Color::Color(NamedColor named) case Cyan: rgb = { 0, 255, 255 }; break; + case DarkCyan: + rgb = { 0, 127, 127 }; + break; + case MidCyan: + rgb = { 0, 192, 192 }; + break; case Blue: rgb = { 0, 0, 255 }; break; diff --git a/Libraries/LibDraw/Color.h b/Libraries/LibDraw/Color.h index 2d46dd20b8..f412a29ba9 100644 --- a/Libraries/LibDraw/Color.h +++ b/Libraries/LibDraw/Color.h @@ -26,9 +26,11 @@ public: MidGray, LightGray, WarmGray, + DarkCyan, DarkGreen, DarkBlue, DarkRed, + MidCyan, MidGreen, MidRed, MidBlue,