From cb1183751aa25069560923948a0a6de300e6ac9c Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 2 May 2025 12:22:30 -0400 Subject: color.h --- color.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 color.h (limited to 'color.h') diff --git a/color.h b/color.h new file mode 100644 index 0000000..7de787a --- /dev/null +++ b/color.h @@ -0,0 +1,8 @@ +static const mu_Color BLACK = {0, 0, 0, 255}; +static const mu_Color WHITE = {255, 255, 255, 255}; +static const mu_Color LIGHT_GRAY = {222, 222, 222, 255}; +static const mu_Color DARK_GRAY = {128, 128, 128, 255}; +static const mu_Color RED = {255, 0, 0, 255}; +static const mu_Color GREEN = {0, 255, 0, 255}; +static const mu_Color BLUE = {0, 0, 255, 255}; +static const mu_Color TRANSPARENT = {0, 0, 0, 0}; -- cgit v1.2.3