-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.h
45 lines (44 loc) · 1.77 KB
/
colors.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* colors.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ahmaymou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/17 18:28:39 by ahmaymou #+# #+# */
/* Updated: 2023/01/29 17:47:40 by ahmaymou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef COLORS_H
# define COLORS_H
# define RED 0xff0000
# define ORANGERED 0xff4500
# define DARKORANGE 0xff7f00
# define ORANGE1 0xffa500
# define ORANGE2 0xee9a00
# define ORANGE3 0xcd850
# define ORANGE4 0x8b5a00
# define BLUE 0x8b
# define LIGHTBLUE 0xadd8e6
# define DARKGREEN 0x6400
# define GREEN 0xff00
# define LIGHTGREEN 0x90ee90
# define BLACK 0x0
# define WHITE 0xffffff
# define ORANGERED1 0xff4500
# define ORANGERED2 0xee4000
# define ORANGERED3 0xcd3700
# define ORANGERED4 0x8b2500
# define DARKORANGE 0xff7f00
# define ORANGE 0xffa500
# define BLUE 0x8b
# define LIGHTBLUE 0xadd8e6
# define DARKGREEN 0x6400
# define GREEN 0xff00
# define LIGHTGREEN 0x90ee90
# define BLACK 0x0
# define YELLOW 0xffffe0
# define LIGHTCYAN 0xe0ffff
# define GRAY 0xcccccc
# define KHAKI 0xfff68f
#endif