From cbd121da61f98da3ef8e817c2ec489ef79ad3128 Mon Sep 17 00:00:00 2001 From: Rebekah Rowe Date: Thu, 7 Apr 2022 13:22:02 -0400 Subject: [PATCH] Added more preset colors --- include/glez/color.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/glez/color.hpp b/include/glez/color.hpp index 3e81dc4..11144fe 100644 --- a/include/glez/color.hpp +++ b/include/glez/color.hpp @@ -34,6 +34,11 @@ constexpr rgba black(0, 0, 0); constexpr rgba red(255, 0, 0); constexpr rgba green(0, 255, 0); constexpr rgba blue(0, 0, 255); +constexpr rgba yellow(255, 255, 0); +constexpr rgba orange(255, 120, 0); +constexpr rgba pink(255, 105, 180); + +rgba RainbowCurrent(); } // namespace color } // namespace glez