diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-05-02 12:22:30 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-05-02 12:22:30 -0400 |
| commit | cb1183751aa25069560923948a0a6de300e6ac9c (patch) | |
| tree | f2bd33a2391d70c058d570964996428a4d1ecb26 /main.c | |
| parent | 5df9fecb029c740e151235ebbfb4835f21bd8313 (diff) | |
| download | volute-cb1183751aa25069560923948a0a6de300e6ac9c.zip | |
color.h
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -11,6 +11,7 @@ #include "widget.h" #include "engine.h" #include "ui.h" +#include "color.h" /* Macros. */ @@ -26,11 +27,6 @@ enum window { }; -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 COLOR_TEXT = BLACK; static const mu_Color COLOR_BORDER = BLACK; static const mu_Color COLOR_WINDOWBG = WHITE; |