diff --git a/src/include/colors.h b/src/include/colors.h new file mode 100644 index 0000000..0e1e5fc --- /dev/null +++ b/src/include/colors.h @@ -0,0 +1,17 @@ +#include + +#ifndef DEF_COLORS_H +#define DEF_COLORS_H + +#define RESET "\033[0m" +#define BLACK "\033[30m" /* Black */ +#define RED "\033[31m" /* Red */ +#define GREEN "\033[32m" /* Green */ +#define YELLOW "\033[33m" /* Yellow */ +#define BLUE "\033[34m" /* Blue */ +#define MAGENTA "\033[35m" /* Magenta */ +#define CYAN "\033[36m" /* Cyan */ +#define WHITE "\033[37m" /* White */ +#define BOLD "\033[1m" /* BOLD */ + +#endif \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..5633c2c --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; + + +int main(int argc, char* argv[]) { + return 0; +} \ No newline at end of file