aboutsummaryrefslogtreecommitdiffstats
path: root/color.h
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-05-02 12:22:30 -0400
committerSam Anthony <sam@samanthony.xyz>2025-05-02 12:22:30 -0400
commitcb1183751aa25069560923948a0a6de300e6ac9c (patch)
treef2bd33a2391d70c058d570964996428a4d1ecb26 /color.h
parent5df9fecb029c740e151235ebbfb4835f21bd8313 (diff)
downloadvolute-cb1183751aa25069560923948a0a6de300e6ac9c.zip
color.h
Diffstat (limited to 'color.h')
-rw-r--r--color.h8
1 files changed, 8 insertions, 0 deletions
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};