Phase 1 and Phase2 implemented

This commit is contained in:
2024-05-14 20:58:31 +05:30
commit 13c94b0908
8 changed files with 520 additions and 0 deletions

12
include/css.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __CSS__
#define __CSS__
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_YELLOW "\x1b[33m"
#define ANSI_COLOR_BLUE "\x1b[34m"
#define ANSI_COLOR_MAGENTA "\x1b[35m"
#define ANSI_COLOR_CYAN "\x1b[36m"
#define ANSI_COLOR_RESET "\x1b[0m"
#endif