From 328f643a278fb41bb441898208c289f18a6fbf04 Mon Sep 17 00:00:00 2001 From: Jesse van den Kieboom Date: Sun, 8 Jan 2006 16:34:06 +0000 Subject: [PATCH] Improved default scheme --- gnoemoe/gm-color-table.c | 56 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/gnoemoe/gm-color-table.c b/gnoemoe/gm-color-table.c index 5d6c50a..b488645 100644 --- a/gnoemoe/gm-color-table.c +++ b/gnoemoe/gm-color-table.c @@ -21,7 +21,61 @@ typedef struct _GmColorTableSchemeItem { const gchar *hex; } GmColorTableSchemeItem; +/*const GdkColor +terminal_palette_linux[TERMINAL_PALETTE_SIZE] = +{ + { 0, 0x0000, 0x0000, 0x0000 }, + { 0, 0xaaaa, 0x0000, 0x0000 }, + { 0, 0x0000, 0xaaaa, 0x0000 }, + { 0, 0xaaaa, 0x5555, 0x0000 }, + { 0, 0x0000, 0x0000, 0xaaaa }, + { 0, 0xaaaa, 0x0000, 0xaaaa }, + { 0, 0x0000, 0xaaaa, 0xaaaa }, + { 0, 0xaaaa, 0xaaaa, 0xaaaa }, + { 0, 0x5555, 0x5555, 0x5555 }, + { 0, 0xffff, 0x5555, 0x5555 }, + { 0, 0x5555, 0xffff, 0x5555 }, + { 0, 0xffff, 0xffff, 0x5555 }, + { 0, 0x5555, 0x5555, 0xffff }, + { 0, 0xffff, 0x5555, 0xffff }, + { 0, 0x5555, 0xffff, 0xffff }, + { 0, 0xffff, 0xffff, 0xffff } +};*/ + static const GmColorTableSchemeItem scheme_default[] = { + {"fg_default", "#000000"}, + {"fg_black", "#000000"}, + {"fg_red", "#aa0000"}, + {"fg_green", "#00aa00"}, + {"fg_yellow", "#aa5500"}, + {"fg_blue", "#0000aa"}, + {"fg_purple", "#aa00aa"}, + {"fg_cyan", "#00aaaa"}, + {"fg_white", "#aaaaaa"}, + + {"fg_default_h", "#555555"}, + {"fg_black_h", "#555555"}, + {"fg_red_h", "#ff5555"}, + {"fg_green_h", "#55ff55"}, + {"fg_yellow_h", "#ffff55"}, + {"fg_blue_h", "#5555ff"}, + {"fg_purple_h", "#ff55ff"}, + {"fg_cyan_h", "#55ffff"}, + {"fg_white_h", "#ffffff"}, + + {"bg_default", "#ffffff"}, + {"bg_black", "#222222"}, + {"bg_red", "#770000"}, + {"bg_green", "#007700"}, + {"bg_yellow", "#ddaa33"}, + {"bg_blue", "#000077"}, + {"bg_purple", "#770077"}, + {"bg_cyan", "#007777"}, + {"bg_white", "#777777"}, + {NULL, NULL} +}; + +/*static const GmColorTableSchemeItem scheme_default[] = { {"fg_default", "#000000"}, {"fg_black", "#000000"}, {"fg_red", "#663822"}, @@ -52,7 +106,7 @@ static const GmColorTableSchemeItem scheme_default[] = { {"bg_cyan", "#0000FFFFFFFF"}, {"bg_white", "#FFFFFFFFFFFF"}, {NULL, NULL} -}; +};*/ static const GmColorTableSchemeItem scheme_white_on_black[] = { {"fg_default", "#D6B5D6B5D6B5"},