DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
Colors.c
См. документацию.
1//color values and names taken from https://en.wikipedia.org/wiki/X11_color_names
2
3class 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
69class 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}
const int LIGHT_GREY
Определения Colors.c:72
const int RED
Определения Colors.c:74
const int BLACK
Определения Colors.c:73
class Colors WHITE
const int DARK_RED
Определения Colors.c:75
const int COLOR_LIVONIA_BLACK_GREEN
Определения Colors.c:61
const int COLOR_FROSTLINE_DARK_BLUE
Определения Colors.c:66
const int COLOR_LIVONIA_EMERALD_GREEN
Определения Colors.c:58
const int COLOR_BAKED
Определения Colors.c:45
const int COLOR_DRENCHED
Определения Colors.c:26
const int COLOR_DAMAGED
Определения Colors.c:22
const int PURPLE
Определения Colors.c:9
const int GRAY
Определения Colors.c:7
const int COLOR_BADLY_DAMAGED
Определения Colors.c:21
const int TEMPERATURE_COLD_LVL_ONE
Определения Colors.c:36
const int BLACK
Определения Colors.c:13
const int TEMPERATURE_COLD_LVL_THREE
Определения Colors.c:38
const int COLOR_DAYZ_DARK_BLUE
Определения Colors.c:52
const int COLOR_RAW
Определения Colors.c:44
const int GREEN
Определения Colors.c:8
const int COLOR_FROZEN
Определения Colors.c:42
const int RED
Определения Colors.c:5
const int COLOR_LIVONIA_OLIVE
Определения Colors.c:62
const int COLOR_DAMP
Определения Colors.c:29
const int COLOR_ROTTEN
Определения Colors.c:49
const int ORANGE
Определения Colors.c:11
const int TEMPERATURE_COLD_LVL_TWO
Определения Colors.c:37
const int COLOR_DAYZ_SMOKY_BLUE
Определения Colors.c:53
const int COLOR_FROSTLINE_LIGHT_BLUE
Определения Colors.c:64
const int COLOR_PRISTINE
Определения Colors.c:24
const int COLOR_BOILED
Определения Colors.c:46
const int COLOR_LIVONIA_FOREST_GREEN
Определения Colors.c:59
const int COLOR_WET
Определения Colors.c:28
const int WHITE
Определения Colors.c:15
const int TEMPERATURE_HOT_LVL_THREE
Определения Colors.c:32
const int COLOR_SOAKING_WET
Определения Colors.c:27
const int YELLOW
Определения Colors.c:10
const int COLOR_WORN
Определения Colors.c:23
const int COLOR_DAYZ_WASHOUT
Определения Colors.c:56
const int TEMPERATURE_HOT_LVL_FOUR
Определения Colors.c:31
const int TEMPERATURE_NEUTAL
Определения Colors.c:35
const int COLOR_BURNED
Определения Colors.c:48
const int COLOR_DAYZ_WHITE_BLUE
Определения Colors.c:54
const int COLOR_DEFAULT
Определения Colors.c:18
const int TEMPERATURE_HOT_LVL_ONE
Определения Colors.c:34
const int WHITEGRAY
Определения Colors.c:16
const int COLOR_DRIED
Определения Colors.c:47
const int COLOR_FROSTLINE_MOUNTAIN_BLUE
Определения Colors.c:65
const int COLOR_RUINED
Определения Colors.c:20
const int TEMPERATURE_HOT_LVL_TWO
Определения Colors.c:33
const int COLOR_LIQUID
Определения Colors.c:41
const int COLOR_DAYZ_RED
Определения Colors.c:51
const int BLUE
Определения Colors.c:12
const int COLOR_LIVONIA_DARK_GREEN
Определения Colors.c:60
const int COLOR_DAYZ_LIGHT_SHADE
Определения Colors.c:55
const int TEMPERATURE_COLD_LVL_FOUR
Определения Colors.c:39
const int CYAN
Определения Colors.c:6
const int BROWN
Определения Colors.c:14
Определения Colors.c:4