diff --git a/include/core/color.hpp b/include/core/color.hpp new file mode 100644 index 0000000..e5efc52 --- /dev/null +++ b/include/core/color.hpp @@ -0,0 +1,26 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* color.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rparodi +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2025/05/12 14:13:18 by rparodi #+# #+# */ +/* Updated: 2025/05/12 14:13:30 by rparodi ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#pragma once + +#define CLR_RESET "\033[0m" + +#define CLR_BLACK "\033[0;30m" +#define CLR_RED "\033[0;31m" +#define CLR_GREEN "\033[0;32m" +#define CLR_YELLOW "\033[0;33m" +#define CLR_BLUE "\033[0;34m" +#define CLR_MAGENTA "\033[0;35m" +#define CLR_CYAN "\033[0;36m" +#define CLR_WHITE "\033[0;37m" +#define CLR_GOLD "\033[38;5;220m" +#define CLR_GREY "\033[38;5;240m" diff --git a/include/core/core.hpp b/include/core/core.hpp new file mode 100644 index 0000000..49e2dca --- /dev/null +++ b/include/core/core.hpp @@ -0,0 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* core.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rparodi +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2025/05/12 14:16:03 by rparodi #+# #+# */ +/* Updated: 2025/05/12 14:16:52 by rparodi ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#pragma once + +#ifndef DEBUG +#define DEBUG 0 +#endif + +#include "color.hpp"