* Made the colors of our Terminal a bit easier to look at, especially in

the ls output.
* Made the array the size it actually is.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23437 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-01-12 12:41:55 +00:00
parent 5e3a8a4a57
commit f81851cbe3
+9 -9
View File
@@ -47,15 +47,15 @@
extern int function_keycode_table[];
extern char *function_key_char_table[];
const static rgb_color kTermColorTable[16] = {
{ 0, 0, 0, 0},
{255, 0, 0, 0},
{ 0, 255, 0, 0},
{255, 255, 0, 0},
{ 0, 0, 255, 0},
{255, 0, 255, 0},
{ 0, 255, 255, 0},
{255, 255, 255, 0},
const static rgb_color kTermColorTable[8] = {
{ 40, 40, 40, 0}, // black
{204, 0, 0, 0}, // red
{ 78, 154, 6, 0}, // green
{218, 168, 0, 0}, // yellow
{ 51, 102, 152, 0}, // blue
{115, 68, 123, 0}, // magenta
{ 6, 152, 154, 0}, // cyan
{245, 245, 245, 0}, // white
};