Merge pull request #1077 from Areloch/NilsUI_Updates_NewColors

Adds some new named colors
This commit is contained in:
Brian Roberts 2023-09-04 22:54:20 -05:00 committed by GitHub
commit 3763ebba48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -38,6 +38,8 @@ const ColorI ColorI::BLACK( 0, 0, 0 );
const ColorI ColorI::RED( 255, 0, 0 );
const ColorI ColorI::GREEN( 0, 255, 0 );
const ColorI ColorI::BLUE( 0, 0, 255 );
const ColorI ColorI::DARK(24, 24, 24);
const ColorI ColorI::LIGHT(120, 120, 120);
#include "console/console.h"
#include "console/consoleTypes.h"

View file

@ -196,6 +196,8 @@ public:
static const ColorI RED;
static const ColorI GREEN;
static const ColorI BLUE;
static const ColorI LIGHT;
static const ColorI DARK;
};
//-----------------------------------------------------------------------------