From e38958ad567009bbb593946206f15c77da782b05 Mon Sep 17 00:00:00 2001 From: Quinn Date: Fri, 24 Jan 2025 16:32:30 +0100 Subject: [PATCH] add a few more colour definitions --- src/window/colour.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/window/colour.h b/src/window/colour.h index ae868bb..e38f57d 100644 --- a/src/window/colour.h +++ b/src/window/colour.h @@ -19,3 +19,7 @@ typedef union { #define COLOUR_CYAN ((Colour){0b00111111}) #define COLOUR_BLUE ((Colour){0b00001111}) #define COLOUR_MAGENTA ((Colour){0b11001111}) + +#define COLOUR_NONE ((Colour){0}) +#define COLOUR_BLACK ((Colour){3}) +#define COLOUR_WHITE ((Colour){0xFF})