-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCores.h
More file actions
60 lines (43 loc) · 1.54 KB
/
Copy pathCores.h
File metadata and controls
60 lines (43 loc) · 1.54 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef _MINHAS_CORES_H
#define _MINHAS_CORES_H
TColorRGBA black(0.0,0.0,0.0);
TColorRGBA green(0.0,1.0,0.0);
TColorRGBA lgreen(0.5,1.0,0.5);
TColorRGBA llgreen(0.7,1.0,0.7);
TColorRGBA dgreen(0.0,0.7,0.0);
TColorRGBA blue(0.0,0.0,1.0);
TColorRGBA lblue(0.5,0.5,1.0);
TColorRGBA llblue(0.7,0.7,1.0);
TColorRGBA dblue(0.0,0.0,0.7);
TColorRGBA blue2(0.0,0.464, 0.75);
TColorRGBA blue3(4.0/255.0,174.0/255.0, 242.0/255.0);
TColorRGBA blue4(4.0/255.0,4.0/255.0, 201.0/255.0);
TColorRGBA blue5(12.0/255.0,222.0/255.0, 249.0/255.0);
TColorRGBA dred(5.0,0.0,0.0);
TColorRGBA red(1.0,0.0,0.0);
TColorRGBA lred(1.0,0.5,0.5);
TColorRGBA llred(1.0,0.6,0.6);
TColorRGBA cyan2(0.01, 0.75, 0.675);
TColorRGBA lcyan2(0.21, 0.95, 0.875);
TColorRGBA violeta(0.625, 0.179, 0.75);
TColorRGBA lyellow(1.0,1.0,0.5);
TColorRGBA yellow(1.0,1.0,0.0);
TColorRGBA magenta(1.0,0.0,1.0);
TColorRGBA cyan(0.0,1.0,1.0);
TColorRGBA white(1.0,1.0,1.0);
TColorRGBA dgrey(0.3,0.3,0.3);
TColorRGBA grey(0.5,0.5,0.5);
TColorRGBA lgrey(0.7,0.7,0.7);
TColorRGBA lorange(8.0,0.3,0.0);
TColorRGBA orange(1.0,0.5,0.0);
TColorRGBA dorange(7.0, 0.25, 0.0);
TColorRGBA orange2(0.77, 0.375, 0.292);
TColorRGBA rosa(0.85,0.1,0.85);
TColorRGBA green0(0.0, 0.5, 0.2);
TColorRGBA green1(0.20, 0.60, 0.3);
TColorRGBA green2(0.30, 0.65, 0.0);
TColorRGBA green3(0.25, 0.80, 0.0);
TColorRGBA green4(3.0/255.0, 155.0/255.0, 20.0/255.0);
TColorRGBA green5(124.0/255.0, 198.0/255.0, 99.0/255.0);
TColorRGBA green6(104.0/255.0, 221.0/255.0, 153.0/255.0);
#endif