mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:07:45 +00:00
LibGfx: Add missing color LightBlue
Will be used in a follow-up commit as alternative to Blue
This commit is contained in:
parent
4a766245fa
commit
29de0dbea5
1 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,7 @@ public:
|
||||||
MidRed,
|
MidRed,
|
||||||
MidBlue,
|
MidBlue,
|
||||||
MidMagenta,
|
MidMagenta,
|
||||||
|
LightBlue,
|
||||||
};
|
};
|
||||||
|
|
||||||
constexpr Color() = default;
|
constexpr Color() = default;
|
||||||
|
@ -546,6 +547,9 @@ constexpr Color::Color(NamedColor named)
|
||||||
case WarmGray:
|
case WarmGray:
|
||||||
rgb = { 212, 208, 200 };
|
rgb = { 212, 208, 200 };
|
||||||
break;
|
break;
|
||||||
|
case LightBlue:
|
||||||
|
rgb = { 173, 216, 230 };
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
VERIFY_NOT_REACHED();
|
VERIFY_NOT_REACHED();
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue