logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

color.h (391B)


  1. #pragma once
  2. #define COLOR_BLANK 0, 0, 0
  3. #define COLOR_BLACK 0, 0, 0
  4. #define COLOR_WHITE 15,15,15
  5. #define COLOR_GRAY 7, 7, 7
  6. #define COLOR_RED 15, 0, 0
  7. #define COLOR_GREEN 0,15, 0
  8. #define COLOR_BLUE 0, 0,15
  9. #define COLOR_YELLOW 15,15, 0
  10. #define COLOR_MAGENTA 15, 0,15
  11. #define COLOR_CYAN 0,15,15
  12. #define COLOR_ORANGE 15, 5, 0