aboutsummaryrefslogtreecommitdiff
path: root/system.old/libraries/colors/colors.zig
diff options
context:
space:
mode:
Diffstat (limited to 'system.old/libraries/colors/colors.zig')
-rw-r--r--system.old/libraries/colors/colors.zig12
1 files changed, 12 insertions, 0 deletions
diff --git a/system.old/libraries/colors/colors.zig b/system.old/libraries/colors/colors.zig
new file mode 100644
index 0000000..1e151da
--- /dev/null
+++ b/system.old/libraries/colors/colors.zig
@@ -0,0 +1,12 @@
+//! Display colors
+
+pub const white: u32 = 0x00FFFFFF;
+pub const black: u32 = 0x00000000;
+pub const red: u32 = 0x00FF4444;
+pub const green: u32 = 0x0088FF88;
+pub const blue: u32 = 0x004488DD;
+pub const yellow: u32 = 0x00DDDD00;
+pub const cyan: u32 = 0x0000FFFF;
+pub const magenta: u32 = 0x00FF00FF;
+pub const gray: u32 = 0x00888888;
+pub const purple: u32 = 0x00BB88FF;