feat: add colors

This commit is contained in:
utox39
2025-05-10 20:13:15 +02:00
parent 360fe05007
commit 6fa4d8a699
2 changed files with 37 additions and 19 deletions

View File

@@ -1,5 +1,15 @@
const std = @import("std");
pub const Reset = "\x1b[0m";
pub const Bold = "\x1b[1m";
pub const Red = "\x1b[31m";
pub const Green = "\x1b[32m";
pub const Yellow = "\x1b[33m";
pub const Blue = "\x1b[34m";
pub const Magenta = "\x1b[35m";
pub const Cyan = "\x1b[36m";
pub const White = "\x1b[37m";
pub fn selectAscii() void {}
pub fn printAscii(allocator: std.mem.Allocator, sys_info_list: std.ArrayList([]u8)) !void {