diff options
author | Ryan Hausen <ryan.hausen@gmail.com> | 2022-01-21 22:12:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-22 06:12:14 +0000 |
commit | 489475814a7cff2bbcbe75b94024092173d01345 (patch) | |
tree | 0e8cfa4c93c78170215c8662a40e5a2195b2b18d | |
parent | fed36fc5f88b7266c0419cebcda875f5a70894c9 (diff) | |
download | qmk_firmware-489475814a7cff2bbcbe75b94024092173d01345.tar.gz qmk_firmware-489475814a7cff2bbcbe75b94024092173d01345.zip |
fixed typo in orange HSV colors decalartion (#15976)
-rw-r--r-- | quantum/color.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/color.h b/quantum/color.h index e2cfc46927..135ad623b5 100644 --- a/quantum/color.h +++ b/quantum/color.h @@ -60,7 +60,7 @@ #define HSV_GOLDENROD 30, 218, 218 #define HSV_GREEN 85, 255, 255 #define HSV_MAGENTA 213, 255, 255 -#define HSV_ORANGE 28, 255, 255 +#define HSV_ORANGE 21, 255, 255 #define HSV_PINK 234, 128, 255 #define HSV_PURPLE 191, 255, 255 #define HSV_RED 0, 255, 255 |