20 lines
1.0 KiB
C
20 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* colors.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/01 08:20:09 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/01 08:20:46 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef COLORS_H
|
|
# define COLORS_H
|
|
# define RESET "\x1b[m"
|
|
# define RED "\x1b[31m"
|
|
# define GREEN "\x1b[32m"
|
|
# define YELLOW "\x1b[33m"
|
|
#endif
|