From Nils' UI Update work. Adds some new named colors

This commit is contained in:
Areloch 2023-09-04 22:36:28 -05:00
parent a445a43646
commit 3451c11393
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;
};
//-----------------------------------------------------------------------------