diff --git a/Userland/Libraries/LibGfx/Color.h b/Userland/Libraries/LibGfx/Color.h index 0cab5cfe5e..98536a3153 100644 --- a/Userland/Libraries/LibGfx/Color.h +++ b/Userland/Libraries/LibGfx/Color.h @@ -56,6 +56,7 @@ public: MidRed, MidBlue, MidMagenta, + LightBlue, }; constexpr Color() = default; @@ -546,6 +547,9 @@ constexpr Color::Color(NamedColor named) case WarmGray: rgb = { 212, 208, 200 }; break; + case LightBlue: + rgb = { 173, 216, 230 }; + break; default: VERIFY_NOT_REACHED(); break;