Change the color namespace to ColorValue. Need to come up with the organizational theme for the code.

This commit is contained in:
Zed A. Shaw 2024-12-05 09:24:56 -05:00
parent 56b26e1c4a
commit 2f8c9bd1a9
4 changed files with 7 additions and 9 deletions

View file

@ -23,9 +23,9 @@ struct Panel {
bool has_border = false;
bool must_clear = true;
bool grid = false;
sf::Color default_bg = color::BLACK;
sf::Color default_fg = color::LIGHT_LIGHT;
sf::Color border_color = color::MID;
sf::Color default_bg = ColorValue::BLACK;
sf::Color default_fg = ColorValue::LIGHT_LIGHT;
sf::Color border_color = ColorValue::MID;
int border_px = UI_PANEL_BORDER_PX;
bool $dirty = true;