[Add] Blue and DarkBlue.

This commit is contained in:
Allanis 2013-03-10 18:55:43 +00:00
parent dac9bc367e
commit 4e2f8aa56d
2 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,8 @@ glColour cGreen = { .r = 0.20, .g = 0.80, .b = 0.20, .a = 1. };
glColour cDarkRed = { .r = 0.60, .g = 0.10, .b = 0.10, .a = 1. };
glColour cRed = { .r = 0.80, .g = 0.20, .b = 0.20, .a = 1. };
glColour cYellow = { .r = 0.80, .g = 0.80, .b = 0.00, .a = 1. };
glColour cDarkBlue = { .r = 0.10, .g = 0.20, .b = 0.80, .a = 1. };
glColour cBlue = { .r = 0.20, .g = 0.20, .b = 0.80, .a = 1. };
// Game specific.
glColour cConsole = { .r = 0.1, .g = 0.9, .b = 0.1, .a = 1. };

View File

@ -26,6 +26,8 @@ extern glColour cGreen;
extern glColour cDarkRed;
extern glColour cRed;
extern glColour cYellow;
extern glColour cDarkBlue;
extern glColour cBlue;
// Game specific.
extern glColour cConsole;