From c5c563b269fba12e00cd64d8f922703f86221433 Mon Sep 17 00:00:00 2001 From: Hugo Pezziardi Date: Wed, 14 Sep 2022 17:42:38 +0200 Subject: [PATCH] :sparkles: (rgb): Add Orange & Purple --- libs/ColorKit/include/RGB.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/ColorKit/include/RGB.h b/libs/ColorKit/include/RGB.h index 70d8730d38..57c2a02fe9 100644 --- a/libs/ColorKit/include/RGB.h +++ b/libs/ColorKit/include/RGB.h @@ -41,6 +41,8 @@ struct RGB { static const RGB yellow; static const RGB cyan; static const RGB magenta; + static const RGB purple; + static const RGB orange; }; constexpr RGB RGB::white {0xFF, 0xFF, 0xFF}; @@ -54,4 +56,7 @@ constexpr RGB RGB::yellow {0xFF, 0xFF, 0x00}; constexpr RGB RGB::cyan {0x00, 0xFF, 0xFF}; constexpr RGB RGB::magenta {0xFF, 0x00, 0xFF}; +constexpr RGB RGB::purple {0x14, 0x00, 0x50}; +constexpr RGB RGB::orange {0xFF, 0x80, 0x00}; + } // namespace leka