From c6c32f34f2cb7c955ecf7796d435b54448e88b2a Mon Sep 17 00:00:00 2001 From: apio Date: Fri, 4 Aug 2023 16:05:42 +0200 Subject: [PATCH] libui: Add Color::GRAY --- libui/include/ui/Color.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libui/include/ui/Color.h b/libui/include/ui/Color.h index 4fbf29c2..f549abb5 100644 --- a/libui/include/ui/Color.h +++ b/libui/include/ui/Color.h @@ -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);