Dayz
Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Toggle main menu visibility
Loading...
Searching...
No Matches
colors.c
Go to the documentation of this file.
1
//color values and names taken from https://en.wikipedia.org/wiki/X11_color_names
2
3
class
Colors
4
{
5
const
int
RED
= 0xFF0000;
6
const
int
CYAN
= 0x00FFFF;
7
const
int
GRAY
= 0xBEBEBE;
8
const
int
GREEN
= 0x00FF00;
9
const
int
PURPLE
= 0xA020F0;
10
const
int
YELLOW
= 0xFFFF00;
11
const
int
ORANGE
= 0xFFA500;
12
const
int
BLUE
= 0x0000FF;
13
const
int
BLACK
= 0x000000;
14
const
int
BROWN
= 0xA52A2A;
15
const
int
WHITE
= 0xFFFFFF;
16
const
int
WHITEGRAY
= 0xA0A1A1;
17
18
const
int
COLOR_DEFAULT
= 0x64000000;
19
20
const
int
COLOR_RUINED
= 0x00FF0000;
21
const
int
COLOR_BADLY_DAMAGED
= 0x00FFBF00;
22
const
int
COLOR_DAMAGED
= 0x00FFFF00;
23
const
int
COLOR_WORN
= 0x00BFFF00;
24
const
int
COLOR_PRISTINE
= 0x0040FF00;
25
26
const
int
COLOR_DRENCHED
= 0x000000FF;
27
const
int
COLOR_SOAKING_WET
= 0x003030FF;
28
const
int
COLOR_WET
= 0x006060FF;
29
const
int
COLOR_DAMP
= 0x009090FF;
30
31
const
int
TEMPERATURE_HOT_LVL_FOUR
= 0x009D1A18;
32
const
int
TEMPERATURE_HOT_LVL_THREE
= 0x00D92C28;
33
const
int
TEMPERATURE_HOT_LVL_TWO
= 0x00DC3E40;
34
const
int
TEMPERATURE_HOT_LVL_ONE
= 0x00EE8227;
35
const
int
TEMPERATURE_NEUTAL
= 0x00999999;
36
const
int
TEMPERATURE_COLD_LVL_ONE
= 0x0098D9E9;
37
const
int
TEMPERATURE_COLD_LVL_TWO
= 0x007095D3;
38
const
int
TEMPERATURE_COLD_LVL_THREE
= 0x004851BD;
39
const
int
TEMPERATURE_COLD_LVL_FOUR
= 0x00351BEA;
40
41
const
int
COLOR_LIQUID
= 0x0000EEFF;
42
const
int
COLOR_FROZEN
= 0x006666FF;
43
44
const
int
COLOR_RAW
= 0x00BF4242;
45
const
int
COLOR_BAKED
= 0x00A56D28;
46
const
int
COLOR_BOILED
= 0x00AF9442;
47
const
int
COLOR_DRIED
= 0x00FFEB48;
48
const
int
COLOR_BURNED
= 0x00888888;
49
const
int
COLOR_ROTTEN
= 0x00A93F15;
50
51
const
int
COLOR_DAYZ_RED
= 0xffd70d11;
52
const
int
COLOR_DAYZ_DARK_BLUE
= 0xff13151b;
53
const
int
COLOR_DAYZ_SMOKY_BLUE
= 0xff262a33;
54
const
int
COLOR_DAYZ_WHITE_BLUE
= 0xfff9fcfe;
55
const
int
COLOR_DAYZ_LIGHT_SHADE
= 0xff7d7f85;
56
const
int
COLOR_DAYZ_WASHOUT
= 0xffcfd2d6;
57
58
const
int
COLOR_LIVONIA_EMERALD_GREEN
= 0xff4a8765;
59
const
int
COLOR_LIVONIA_FOREST_GREEN
= 0xff47533e;
60
const
int
COLOR_LIVONIA_DARK_GREEN
= 0xff1c2118;
61
const
int
COLOR_LIVONIA_BLACK_GREEN
= 0xff0b100a;
62
const
int
COLOR_LIVONIA_OLIVE
= 0xff8e8045;
63
64
const
int
COLOR_FROSTLINE_LIGHT_BLUE
= 0xff90b2bf;
65
const
int
COLOR_FROSTLINE_MOUNTAIN_BLUE
= 0xff365d6e;
66
const
int
COLOR_FROSTLINE_DARK_BLUE
= 0xff0d1c21;
67
}
68
69
class
FadeColors
70
{
71
const
int
WHITE
= 0xFFFFFFFF;
72
const
int
LIGHT_GREY
= 0xFFD7D7D7;
73
const
int
BLACK
= 0xFF000000;
74
const
int
RED
= 0xFFFF0000;
75
const
int
DARK_RED
= 0xFF3f0000;
76
}
Colors
Definition
colors.c:4
Colors::COLOR_LIQUID
const int COLOR_LIQUID
Definition
colors.c:41
Colors::GREEN
const int GREEN
Definition
colors.c:8
Colors::COLOR_BADLY_DAMAGED
const int COLOR_BADLY_DAMAGED
Definition
colors.c:21
Colors::COLOR_DAYZ_WHITE_BLUE
const int COLOR_DAYZ_WHITE_BLUE
Definition
colors.c:54
Colors::COLOR_DAYZ_SMOKY_BLUE
const int COLOR_DAYZ_SMOKY_BLUE
Definition
colors.c:53
Colors::ORANGE
const int ORANGE
Definition
colors.c:11
Colors::RED
const int RED
Definition
colors.c:5
Colors::COLOR_DAYZ_WASHOUT
const int COLOR_DAYZ_WASHOUT
Definition
colors.c:56
Colors::COLOR_DAMP
const int COLOR_DAMP
Definition
colors.c:29
Colors::CYAN
const int CYAN
Definition
colors.c:6
Colors::COLOR_BOILED
const int COLOR_BOILED
Definition
colors.c:46
Colors::COLOR_DAYZ_RED
const int COLOR_DAYZ_RED
Definition
colors.c:51
Colors::COLOR_DAYZ_DARK_BLUE
const int COLOR_DAYZ_DARK_BLUE
Definition
colors.c:52
Colors::TEMPERATURE_COLD_LVL_ONE
const int TEMPERATURE_COLD_LVL_ONE
Definition
colors.c:36
Colors::TEMPERATURE_HOT_LVL_FOUR
const int TEMPERATURE_HOT_LVL_FOUR
Definition
colors.c:31
Colors::COLOR_FROSTLINE_LIGHT_BLUE
const int COLOR_FROSTLINE_LIGHT_BLUE
Definition
colors.c:64
Colors::COLOR_LIVONIA_DARK_GREEN
const int COLOR_LIVONIA_DARK_GREEN
Definition
colors.c:60
Colors::COLOR_PRISTINE
const int COLOR_PRISTINE
Definition
colors.c:24
Colors::TEMPERATURE_COLD_LVL_THREE
const int TEMPERATURE_COLD_LVL_THREE
Definition
colors.c:38
Colors::BLACK
const int BLACK
Definition
colors.c:13
Colors::COLOR_FROSTLINE_DARK_BLUE
const int COLOR_FROSTLINE_DARK_BLUE
Definition
colors.c:66
Colors::COLOR_DAYZ_LIGHT_SHADE
const int COLOR_DAYZ_LIGHT_SHADE
Definition
colors.c:55
Colors::COLOR_WORN
const int COLOR_WORN
Definition
colors.c:23
Colors::WHITE
const int WHITE
Definition
colors.c:15
Colors::COLOR_SOAKING_WET
const int COLOR_SOAKING_WET
Definition
colors.c:27
Colors::COLOR_DAMAGED
const int COLOR_DAMAGED
Definition
colors.c:22
Colors::COLOR_RUINED
const int COLOR_RUINED
Definition
colors.c:20
Colors::COLOR_BAKED
const int COLOR_BAKED
Definition
colors.c:45
Colors::COLOR_DRIED
const int COLOR_DRIED
Definition
colors.c:47
Colors::COLOR_LIVONIA_FOREST_GREEN
const int COLOR_LIVONIA_FOREST_GREEN
Definition
colors.c:59
Colors::COLOR_LIVONIA_OLIVE
const int COLOR_LIVONIA_OLIVE
Definition
colors.c:62
Colors::GRAY
const int GRAY
Definition
colors.c:7
Colors::TEMPERATURE_COLD_LVL_TWO
const int TEMPERATURE_COLD_LVL_TWO
Definition
colors.c:37
Colors::WHITEGRAY
const int WHITEGRAY
Definition
colors.c:16
Colors::COLOR_DEFAULT
const int COLOR_DEFAULT
Definition
colors.c:18
Colors::TEMPERATURE_COLD_LVL_FOUR
const int TEMPERATURE_COLD_LVL_FOUR
Definition
colors.c:39
Colors::TEMPERATURE_HOT_LVL_THREE
const int TEMPERATURE_HOT_LVL_THREE
Definition
colors.c:32
Colors::BROWN
const int BROWN
Definition
colors.c:14
Colors::COLOR_BURNED
const int COLOR_BURNED
Definition
colors.c:48
Colors::BLUE
const int BLUE
Definition
colors.c:12
Colors::TEMPERATURE_NEUTAL
const int TEMPERATURE_NEUTAL
Definition
colors.c:35
Colors::COLOR_FROZEN
const int COLOR_FROZEN
Definition
colors.c:42
Colors::COLOR_LIVONIA_BLACK_GREEN
const int COLOR_LIVONIA_BLACK_GREEN
Definition
colors.c:61
Colors::TEMPERATURE_HOT_LVL_TWO
const int TEMPERATURE_HOT_LVL_TWO
Definition
colors.c:33
Colors::PURPLE
const int PURPLE
Definition
colors.c:9
Colors::COLOR_RAW
const int COLOR_RAW
Definition
colors.c:44
Colors::COLOR_LIVONIA_EMERALD_GREEN
const int COLOR_LIVONIA_EMERALD_GREEN
Definition
colors.c:58
Colors::COLOR_WET
const int COLOR_WET
Definition
colors.c:28
Colors::COLOR_FROSTLINE_MOUNTAIN_BLUE
const int COLOR_FROSTLINE_MOUNTAIN_BLUE
Definition
colors.c:65
Colors::YELLOW
const int YELLOW
Definition
colors.c:10
Colors::TEMPERATURE_HOT_LVL_ONE
const int TEMPERATURE_HOT_LVL_ONE
Definition
colors.c:34
Colors::COLOR_DRENCHED
const int COLOR_DRENCHED
Definition
colors.c:26
Colors::COLOR_ROTTEN
const int COLOR_ROTTEN
Definition
colors.c:49
LIGHT_GREY
const int LIGHT_GREY
Definition
colors.c:72
RED
const int RED
Definition
colors.c:74
BLACK
const int BLACK
Definition
colors.c:73
WHITE
class Colors WHITE
DARK_RED
const int DARK_RED
Definition
colors.c:75
Games
Dayz
scripts
3_game
colors.c
Generated by
1.17.0