From 4801b01b171ba8d4bec667d6a6b83f3fbd6af5bd Mon Sep 17 00:00:00 2001 From: elbachir-one Date: Tue, 19 Nov 2024 18:23:59 +0100 Subject: [PATCH] Windows XP color scheme --- config.def.h | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/config.def.h b/config.def.h index 2cd740a..a6d71f1 100644 --- a/config.def.h +++ b/config.def.h @@ -96,35 +96,33 @@ unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + "#d3d7cf", + "#d3d7cf", + "#000000", + "#ffffff", + "#0000aa", + "#89dceb", + "#d9e0ee", + "#988ba2", /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#270e05", + "#6b290f", + "#bd4307", + "#ffba51", + "#96cdfb", + "#f5c2e7", + "#89dceb", + "#d9e0ee", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", - "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + "#ffffff", /* default foreground color */ + "#000000", /* default background color */ + "#d3d7cf", /* default cursor color */ + "#0000aa", /* reverse cursor color */ }; - - /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor -- 2.46.2