From 8bbddc3bb8543257bf524094639c6812b1731852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Sat, 25 Jan 2025 19:19:09 +0100 Subject: [PATCH] color Orange --- src/patrix/display/DisplayMatrix_common.cpp | 3 ++- src/patrix/display/DisplayMatrix_common.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/patrix/display/DisplayMatrix_common.cpp b/src/patrix/display/DisplayMatrix_common.cpp index 1db691a..298bd25 100644 --- a/src/patrix/display/DisplayMatrix_common.cpp +++ b/src/patrix/display/DisplayMatrix_common.cpp @@ -6,11 +6,12 @@ const RGBA Transparent { 0, 0, 0, 0}; const RGBA Black { 0, 0, 0, 255}; const RGBA Red {255, 0, 0, 255}; const RGBA Yellow {255, 255, 0, 255}; +const RGBA Orange {255, 127, 0, 255}; const RGBA Green { 0, 255, 0, 255}; const RGBA Cyan { 0, 255, 255, 255}; const RGBA Blue { 0, 0, 255, 255}; const RGBA Magenta {255, 0, 255, 255}; -const RGBA Violet {200, 0, 255, 255}; +const RGBA Violet {192, 0, 255, 255}; const RGBA Gray {127, 127, 127, 255}; const RGBA White {255, 255, 255, 255}; // @formatter:on diff --git a/src/patrix/display/DisplayMatrix_common.h b/src/patrix/display/DisplayMatrix_common.h index 5f58618..e24490e 100644 --- a/src/patrix/display/DisplayMatrix_common.h +++ b/src/patrix/display/DisplayMatrix_common.h @@ -80,6 +80,7 @@ extern const RGBA Transparent; extern const RGBA Black; extern const RGBA Red; extern const RGBA Yellow; +extern const RGBA Orange; extern const RGBA Green; extern const RGBA Cyan; extern const RGBA Blue;