From 29de0dbea52919ce49ca9638e8cb346fac562baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Oppeb=C3=B8en?= Date: Sun, 27 Nov 2022 02:10:23 +0100 Subject: [PATCH] LibGfx: Add missing color LightBlue Will be used in a follow-up commit as alternative to Blue --- Userland/Libraries/LibGfx/Color.h | 4 ++++ 1 file changed, 4 insertions(+) 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;