-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.hpp
24 lines (21 loc) · 1.09 KB
/
colors.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* colors.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cyferrei <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/13 16:32:55 by cyferrei #+# #+# */
/* Updated: 2024/11/14 15:29:39 by cyferrei ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef COLORS_HPP
#define COLORS_HPP
#define BOLD_ON "\033[1m"
#define BOLD_OFF "\033[0m"
#define YELLOW "\033[33m"
#define RESET "\033[0m"
#define GREEN "\033[32m"
#define RED "\033[31m"
#define BLUE "\033[34m"
#endif