My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tft_color.h 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #include "../../inc/MarlinConfigPre.h"
  24. #define RED(color) ((color >> 8) & 0xF8)
  25. #define GREEN(color) ((color >> 3) & 0xFC)
  26. #define BLUE(color) ((color << 3) & 0xF8)
  27. #define RGB(red, green, blue) (((red << 8) & 0xF800) | ((green << 3) & 0x07E0) | ((blue >> 3) & 0x001F))
  28. #define COLOR(color) RGB(((color >> 16) & 0xFF), ((color >> 8) & 0xFF), (color & 0xFF))
  29. #define HALF(color) RGB(RED(color) >> 1, GREEN(color) >> 1, BLUE(color) >> 1)
  30. // see https://ee-programming-notepad.blogspot.com/2016/10/16-bit-color-generator-picker.html
  31. #define COLOR_BLACK 0x0000 // #000000
  32. #define COLOR_WHITE 0xFFFF // #FFFFFF
  33. #define COLOR_SILVER 0xC618 // #C0C0C0
  34. #define COLOR_GREY 0x7BEF // #808080
  35. #define COLOR_DARKGREY 0x4208 // #404040
  36. #define COLOR_DARKGREY2 0x39E7 // #303030
  37. #define COLOR_DARK 0x0003 // Some dark color
  38. #define COLOR_RED 0xF800 // #FF0000
  39. #define COLOR_SCARLET 0xF904 // #FF2020
  40. #define COLOR_LIME 0x7E00 // #00FF00
  41. #define COLOR_BLUE 0x001F // #0000FF
  42. #define COLOR_LIGHT_BLUE 0x061F // #00C3FF
  43. #define COLOR_YELLOW 0xFFE0 // #FFFF00
  44. #define COLOR_MAGENTA 0xF81F // #FF00FF
  45. #define COLOR_FUCHSIA 0xF81F // #FF00FF
  46. #define COLOR_CYAN 0x07FF // #00FFFF
  47. #define COLOR_AQUA 0x07FF // #00FFFF
  48. #define COLOR_DODGER_BLUE 0x041F // #0080FF
  49. #define COLOR_VIVID_VIOLET 0x7933 // #772399
  50. #define COLOR_DARK_PURPLE 0x9930 // #992380
  51. #define COLOR_MAROON 0x7800 // #800000
  52. #define COLOR_GREEN 0x03E0 // #008000
  53. #define COLOR_NAVY 0x000F // #000080
  54. #define COLOR_OLIVE 0x8400 // #808000
  55. #define COLOR_PURPLE 0x8010 // #800080
  56. #define COLOR_TEAL 0x0410 // #008080
  57. #define COLOR_ORANGE 0xFC00 // #FF7F00
  58. #define COLOR_VIVID_GREEN 0x7FE0 // #7FFF00
  59. #define COLOR_DARK_ORANGE 0xFC40 // #FF8C00
  60. #define COLOR_CORAL_RED 0xF9E7 // #FF3F3F
  61. #define COLOR_DARK_PURPLE 0x9930 // #992380
  62. #ifndef COLOR_BACKGROUND
  63. #define COLOR_BACKGROUND 0x20AC // #1E156E
  64. #endif
  65. #ifndef COLOR_SELECTION_BG
  66. #define COLOR_SELECTION_BG 0x9930 // #992380
  67. #endif
  68. #ifndef COLOR_WEBSITE_URL
  69. #define COLOR_WEBSITE_URL 0x03B7
  70. #endif
  71. #ifndef COLOR_INACTIVE
  72. #define COLOR_INACTIVE COLOR_GREY
  73. #endif
  74. #ifndef COLOR_COLD
  75. #define COLOR_COLD COLOR_AQUA
  76. #endif
  77. #ifndef COLOR_HOTEND
  78. #define COLOR_HOTEND COLOR_SCARLET
  79. #endif
  80. #ifndef COLOR_HEATED_BED
  81. #define COLOR_HEATED_BED COLOR_DARK_ORANGE
  82. #endif
  83. #ifndef COLOR_CHAMBER
  84. #define COLOR_CHAMBER COLOR_DARK_ORANGE
  85. #endif
  86. #ifndef COLOR_FAN
  87. #define COLOR_FAN COLOR_AQUA
  88. #endif
  89. #ifndef COLOR_AXIS_HOMED
  90. #define COLOR_AXIS_HOMED COLOR_WHITE
  91. #endif
  92. #ifndef COLOR_AXIS_NOT_HOMED
  93. #define COLOR_AXIS_NOT_HOMED COLOR_YELLOW
  94. #endif
  95. #ifndef COLOR_RATE_100
  96. #define COLOR_RATE_100 COLOR_VIVID_GREEN
  97. #endif
  98. #ifndef COLOR_RATE_ALTERED
  99. #define COLOR_RATE_ALTERED COLOR_YELLOW
  100. #endif
  101. #ifndef COLOR_PRINT_TIME
  102. #define COLOR_PRINT_TIME COLOR_AQUA
  103. #endif
  104. #ifndef COLOR_PROGRESS_FRAME
  105. #define COLOR_PROGRESS_FRAME COLOR_WHITE
  106. #endif
  107. #ifndef COLOR_PROGRESS_BAR
  108. #define COLOR_PROGRESS_BAR COLOR_BLUE
  109. #endif
  110. #ifndef COLOR_PROGRESS_BG
  111. #define COLOR_PROGRESS_BG COLOR_BLACK
  112. #endif
  113. #ifndef COLOR_STATUS_MESSAGE
  114. #define COLOR_STATUS_MESSAGE COLOR_YELLOW
  115. #endif
  116. #ifndef COLOR_CONTROL_ENABLED
  117. #define COLOR_CONTROL_ENABLED COLOR_WHITE
  118. #endif
  119. #ifndef COLOR_CONTROL_DISABLED
  120. #define COLOR_CONTROL_DISABLED COLOR_GREY
  121. #endif
  122. #ifndef COLOR_CONTROL_CANCEL
  123. #define COLOR_CONTROL_CANCEL COLOR_SCARLET
  124. #endif
  125. #ifndef COLOR_CONTROL_CONFIRM
  126. #define COLOR_CONTROL_CONFIRM COLOR_VIVID_GREEN
  127. #endif
  128. #ifndef COLOR_BUSY
  129. #define COLOR_BUSY COLOR_SILVER
  130. #endif
  131. #ifndef COLOR_MENU_TEXT
  132. #define COLOR_MENU_TEXT COLOR_YELLOW
  133. #endif
  134. #ifndef COLOR_MENU_VALUE
  135. #define COLOR_MENU_VALUE COLOR_WHITE
  136. #endif
  137. #ifndef COLOR_SLIDER
  138. #define COLOR_SLIDER COLOR_WHITE
  139. #endif
  140. #ifndef COLOR_SLIDER_INACTIVE
  141. #define COLOR_SLIDER_INACTIVE COLOR_GREY
  142. #endif
  143. #ifndef COLOR_UBL
  144. #define COLOR_UBL COLOR_WHITE
  145. #endif
  146. #ifndef COLOR_TOUCH_CALIBRATION
  147. #define COLOR_TOUCH_CALIBRATION COLOR_WHITE
  148. #endif
  149. #ifndef COLOR_KILL_SCREEN_BG
  150. #define COLOR_KILL_SCREEN_BG COLOR_MAROON
  151. #endif
  152. #ifndef COLOR_KILL_SCREEN_TEXT
  153. #define COLOR_KILL_SCREEN_TEXT COLOR_WHITE
  154. #endif