libui: Add Color::GRAY
This commit is contained in:
parent
16fa55899e
commit
c6c32f34f2
@ -94,6 +94,7 @@ namespace ui
|
|||||||
|
|
||||||
static constexpr Color WHITE = Color::from_rgb(0xff, 0xff, 0xff);
|
static constexpr Color WHITE = Color::from_rgb(0xff, 0xff, 0xff);
|
||||||
static constexpr Color BLACK = Color::from_rgb(0x00, 0x00, 0x00);
|
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 BLUE = Color::from_rgb(0x00, 0x00, 0xff);
|
||||||
static constexpr Color GREEN = Color::from_rgb(0x00, 0xff, 0x00);
|
static constexpr Color GREEN = Color::from_rgb(0x00, 0xff, 0x00);
|
||||||
|
Loading…
Reference in New Issue
Block a user