color Orange

This commit is contained in:
Patrick Haßel 2025-01-25 19:19:09 +01:00
parent d7ed172fca
commit 8bbddc3bb8
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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;