You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
C
55 lines
1.7 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* shellcolor.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hroussea <hroussea@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/09/22 21:41:39 by hroussea #+# #+# */
|
|
/* Updated: 2021/09/22 21:41:40 by hroussea ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SHELLCOLOR_H
|
|
# define SHELLCOLOR_H
|
|
|
|
# define BLK "\e[0;30m"
|
|
# define RED "\e[0;31m"
|
|
# define GRN "\e[0;32m"
|
|
# define YEL "\e[0;33m"
|
|
# define BLU "\e[0;34m"
|
|
# define MAG "\e[0;35m"
|
|
# define CYN "\e[0;36m"
|
|
# define WHT "\e[0;37m"
|
|
|
|
# define BBLK "\e[1;30m"
|
|
# define BRED "\e[1;31m"
|
|
# define BGRN "\e[1;32m"
|
|
# define BYEL "\e[1;33m"
|
|
# define BBLU "\e[1;34m"
|
|
# define BMAG "\e[1;35m"
|
|
# define BCYN "\e[1;36m"
|
|
# define BWHT "\e[1;37m"
|
|
|
|
# define HBLK "\e[0;90m"
|
|
# define HRED "\e[0;91m"
|
|
# define HGRN "\e[0;92m"
|
|
# define HYEL "\e[0;93m"
|
|
# define HBLU "\e[0;94m"
|
|
# define HMAG "\e[0;95m"
|
|
# define HCYN "\e[0;96m"
|
|
# define HWHT "\e[0;97m"
|
|
|
|
# define BHBLK "\e[1;90m"
|
|
# define BHRED "\e[1;91m"
|
|
# define BHGRN "\e[1;92m"
|
|
# define BHYEL "\e[1;93m"
|
|
# define BHBLU "\e[1;94m"
|
|
# define BHMAG "\e[1;95m"
|
|
# define BHCYN "\e[1;96m"
|
|
# define BHWHT "\e[1;97m"
|
|
|
|
# define RESET "\e[0m"
|
|
|
|
#endif
|