libui: Add Color::GRAY

This commit is contained in:
apio 2023-08-04 16:05:42 +02:00
parent d9557e5089
commit d78cc52d22
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -94,6 +94,7 @@ namespace ui
static constexpr Color WHITE = Color::from_rgb(0xff, 0xff, 0xff);
static constexpr Color BLACK = Color::from_rgb(0x00, 0x00, 0x00);
static constexpr Color GRAY = Color::from_rgb(0x80, 0x80, 0x80);
static constexpr Color BLUE = Color::from_rgb(0x00, 0x00, 0xff);
static constexpr Color GREEN = Color::from_rgb(0x00, 0xff, 0x00);