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 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. #define RED(color) ((color >> 8) & 0xF8)
  24. #define GREEN(color) ((color >> 3) & 0xFC)
  25. #define BLUE(color) ((color << 3) & 0xF8)
  26. #define RGB(red, green, blue) (((red << 8) & 0xF800) | ((green << 3) & 0x07E0) | ((blue >> 3) & 0x001F))
  27. #define COLOR(color) RGB(((color >> 16) & 0xFF), ((color >> 8) & 0xFF), (color & 0xFF))
  28. #define HALF(color) RGB(RED(color) >> 1, GREEN(color) >> 1, BLUE(color) >> 1)
  29. // see https://ee-programming-notepad.blogspot.com/2016/10/16-bit-color-generator-picker.html
  30. #define COLOR_BLACK 0x0000 // #000000
  31. #define COLOR_WHITE 0xFFFF // #FFFFFF
  32. #define COLOR_SILVER 0xC618 // #C0C0C0
  33. #define COLOR_GREY 0x7BEF // #808080
  34. #define COLOR_DARKGREY 0x4208 // #404040
  35. #define COLOR_DARKGREY2 0x39E7 // #303030
  36. #define COLOR_DARK 0x0003 // Some dark color
  37. #define COLOR_RED 0xF800 // #FF0000
  38. #define COLOR_SCARLET 0xF904 // #FF2020
  39. #define COLOR_LIME 0x7E00 // #00FF00
  40. #define COLOR_BLUE 0x001F // #0000FF
  41. #define COLOR_LIGHT_BLUE 0x061F // #00C3FF
  42. #define COLOR_YELLOW 0xFFE0 // #FFFF00
  43. #define COLOR_MAGENTA 0xF81F // #FF00FF
  44. #define COLOR_FUCHSIA 0xF81F // #FF00FF
  45. #define COLOR_CYAN 0x07FF // #00FFFF
  46. #define COLOR_AQUA 0x07FF // #00FFFF
  47. #define COLOR_DODGER_BLUE 0x041F // #0080FF
  48. #define COLOR_VIVID_VIOLET 0x7933 // #772399
  49. #define COLOR_DARK_PURPLE 0x9930 // #992380
  50. #define COLOR_MAROON 0x7800 // #800000
  51. #define COLOR_GREEN 0x03E0 // #008000
  52. #define COLOR_NAVY 0x000F // #000080
  53. #define COLOR_OLIVE 0x8400 // #808000
  54. #define COLOR_PURPLE 0x8010 // #800080
  55. #define COLOR_TEAL 0x0410 // #008080
  56. #define COLOR_ORANGE 0xFC00 // #FF7F00
  57. #define COLOR_VIVID_GREEN 0x7FE0 // #7FFF00
  58. #define COLOR_DARK_ORANGE 0xFC40 // #FF8C00
  59. #define COLOR_CORAL_RED 0xF9E7 // #FF3F3F
  60. #define COLOR_DARK_PURPLE 0x9930 // #992380
  61. #ifndef COLOR_BACKGROUND
  62. #define COLOR_BACKGROUND 0x20AC // #1E156E
  63. #endif
  64. #define COLOR_SELECTION_BG 0x9930 // #992380
  65. #define COLOR_WEBSITE_URL 0x03B7
  66. #define COLOR_INACTIVE COLOR_GREY
  67. #define COLOR_COLD COLOR_AQUA
  68. #define COLOR_HOTEND COLOR_SCARLET
  69. #define COLOR_HEATED_BED COLOR_DARK_ORANGE
  70. #define COLOR_CHAMBER COLOR_DARK_ORANGE
  71. #define COLOR_FAN COLOR_AQUA
  72. #define COLOR_AXIS_HOMED COLOR_WHITE
  73. #define COLOR_AXIS_NOT_HOMED COLOR_YELLOW
  74. #define COLOR_RATE_100 COLOR_VIVID_GREEN
  75. #define COLOR_RATE_ALTERED COLOR_YELLOW
  76. #define COLOR_PRINT_TIME COLOR_AQUA
  77. #define COLOR_PROGRESS_FRAME COLOR_WHITE
  78. #define COLOR_PROGRESS_BAR COLOR_BLUE
  79. #define COLOR_PROGRESS_BG COLOR_BLACK
  80. #define COLOR_STATUS_MESSAGE COLOR_YELLOW
  81. #define COLOR_CONTROL_ENABLED COLOR_WHITE
  82. #define COLOR_CONTROL_DISABLED COLOR_GREY
  83. #define COLOR_CONTROL_CANCEL COLOR_SCARLET
  84. #define COLOR_CONTROL_CONFIRM COLOR_VIVID_GREEN
  85. #define COLOR_BUSY COLOR_SILVER
  86. #define COLOR_MENU_TEXT COLOR_YELLOW
  87. #define COLOR_MENU_VALUE COLOR_WHITE
  88. #define COLOR_SLIDER COLOR_WHITE
  89. #define COLOR_SLIDER_INACTIVE COLOR_GREY
  90. #define COLOR_UBL COLOR_WHITE
  91. #define COLOR_TOUCH_CALIBRATION COLOR_WHITE
  92. #define COLOR_KILL_SCREEN_BG COLOR_MAROON
  93. #define COLOR_KILL_SCREEN_TEXT COLOR_WHITE