Merge pull request #21 from SushilRagoonath/master

orange not defined
This commit is contained in:
Noel Berry 2022-07-18 10:26:17 -07:00 committed by GitHub
commit 6e7e730243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,6 +240,7 @@ namespace Blah
inline const Color Color::green = Color( 0, 255, 0);
inline const Color Color::blue = Color( 0, 0, 255);
inline const Color Color::yellow = Color(255, 255, 0);
inline const Color Color::orange = Color(255, 165, 0);
inline const Color Color::purple = Color(255, 0, 255);
inline const Color Color::teal = Color( 0, 255, 255);
}