1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

LibGfx: Add missing color LightBlue

Will be used in a follow-up commit as alternative to Blue
This commit is contained in:
Andreas Oppebøen 2022-11-27 02:10:23 +01:00 committed by Sam Atkins
parent 4a766245fa
commit 29de0dbea5

View file

@ -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;