qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

color.h (391B)


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