diff options
author | Ryan <fauxpark@gmail.com> | 2021-06-30 04:15:58 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 19:15:58 +0100 |
commit | 653082235aaca8552078e62714eab30d1a517f57 (patch) | |
tree | 437d57b46aab15955b20e230e838e2ba630f1512 /docs/feature_rgb_matrix.md | |
parent | 1e2378fe7f50d6e9d7dcd5f14e768b6718caec80 (diff) | |
download | qmk_firmware-653082235aaca8552078e62714eab30d1a517f57.tar.gz qmk_firmware-653082235aaca8552078e62714eab30d1a517f57.zip |
Relocate RGB/HSV color defs to a more fitting place (#13377)
Diffstat (limited to 'docs/feature_rgb_matrix.md')
-rw-r--r-- | docs/feature_rgb_matrix.md | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md index 925c9de6e..4bd8e1eb9 100644 --- a/docs/feature_rgb_matrix.md +++ b/docs/feature_rgb_matrix.md | |||
@@ -554,28 +554,29 @@ For inspiration and examples, check out the built-in effects under `quantum/rgb_ | |||
554 | 554 | ||
555 | These are shorthands to popular colors. The `RGB` ones can be passed to the `setrgb` functions, while the `HSV` ones to the `sethsv` functions. | 555 | These are shorthands to popular colors. The `RGB` ones can be passed to the `setrgb` functions, while the `HSV` ones to the `sethsv` functions. |
556 | 556 | ||
557 | |RGB |HSV | | 557 | |RGB |HSV | |
558 | |-------------------|-------------------| | 558 | |---------------------|---------------------| |
559 | |`RGB_WHITE` |`HSV_WHITE` | | 559 | |`RGB_AZURE` |`HSV_AZURE` | |
560 | |`RGB_RED` |`HSV_RED` | | 560 | |`RGB_BLACK`/`RGB_OFF`|`HSV_BLACK`/`HSV_OFF`| |
561 | |`RGB_CORAL` |`HSV_CORAL` | | 561 | |`RGB_BLUE` |`HSV_BLUE` | |
562 | |`RGB_ORANGE` |`HSV_ORANGE` | | 562 | |`RGB_CHARTREUSE` |`HSV_CHARTREUSE` | |
563 | |`RGB_GOLDENROD` |`HSV_GOLDENROD` | | 563 | |`RGB_CORAL` |`HSV_CORAL` | |
564 | |`RGB_GOLD` |`HSV_GOLD` | | 564 | |`RGB_CYAN` |`HSV_CYAN` | |
565 | |`RGB_YELLOW` |`HSV_YELLOW` | | 565 | |`RGB_GOLD` |`HSV_GOLD` | |
566 | |`RGB_CHARTREUSE` |`HSV_CHARTREUSE` | | 566 | |`RGB_GOLDENROD` |`HSV_GOLDENROD` | |
567 | |`RGB_GREEN` |`HSV_GREEN` | | 567 | |`RGB_GREEN` |`HSV_GREEN` | |
568 | |`RGB_SPRINGGREEN` |`HSV_SPRINGGREEN` | | 568 | |`RGB_MAGENTA` |`HSV_MAGENTA` | |
569 | |`RGB_TURQUOISE` |`HSV_TURQUOISE` | | 569 | |`RGB_ORANGE` |`HSV_ORANGE` | |
570 | |`RGB_TEAL` |`HSV_TEAL` | | 570 | |`RGB_PINK` |`HSV_PINK` | |
571 | |`RGB_CYAN` |`HSV_CYAN` | | 571 | |`RGB_PURPLE` |`HSV_PURPLE` | |
572 | |`RGB_AZURE` |`HSV_AZURE` | | 572 | |`RGB_RED` |`HSV_RED` | |
573 | |`RGB_BLUE` |`HSV_BLUE` | | 573 | |`RGB_SPRINGGREEN` |`HSV_SPRINGGREEN` | |
574 | |`RGB_PURPLE` |`HSV_PURPLE` | | 574 | |`RGB_TEAL` |`HSV_TEAL` | |
575 | |`RGB_MAGENTA` |`HSV_MAGENTA` | | 575 | |`RGB_TURQUOISE` |`HSV_TURQUOISE` | |
576 | |`RGB_PINK` |`HSV_PINK` | | 576 | |`RGB_WHITE` |`HSV_WHITE` | |
577 | 577 | |`RGB_YELLOW` |`HSV_YELLOW` | | |
578 | These are defined in [`rgblight_list.h`](https://github.com/qmk/qmk_firmware/blob/master/quantum/rgblight_list.h). Feel free to add to this list! | 578 | |
579 | These are defined in [`color.h`](https://github.com/qmk/qmk_firmware/blob/master/quantum/color.h). Feel free to add to this list! | ||
579 | 580 | ||
580 | 581 | ||
581 | ## Additional `config.h` Options :id=additional-configh-options | 582 | ## Additional `config.h` Options :id=additional-configh-options |