logo

qmk_firmware

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

config.h (1439B)


  1. /* Copyright 2019 Josh Hinnebusch
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. // place overrides here
  18. #ifndef HSV_SOFT_PINK
  19. #define HSV_SOFT_PINK 255, 110, 100 // Define custom "soft pink" color
  20. #endif
  21. #ifndef HSV_SOFT_WHITE
  22. #define HSV_SOFT_WHITE 0, 0, 90 // Define custom "soft white" color
  23. #endif
  24. #ifndef HSV_WARM_WHITE
  25. #define HSV_WARM_WHITE 41, 105, 90 // Define custom "warm white" color
  26. #endif
  27. #ifndef HSV_SOFT_RED
  28. #define HSV_SOFT_RED 0, 240, 160 // Define custom "soft red" color
  29. #endif
  30. #ifndef HSV_SOFT_BLUE
  31. #define HSV_SOFT_BLUE 159, 180, 160 // Define custom "soft blue" color
  32. #endif
  33. #ifndef HSV_BLACK
  34. #define HSV_BLACK 0, 0, 0 // Define 'black' color, more like 'LED off' (H, S, V)
  35. #endif
  36. // not sure why i need to also define this here, as it is already in hbcp.h