feat: add colors
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user