colors.c 2.5 KB

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