From db6a481674fd81c3601e30043ad44ecd5f63bbad Mon Sep 17 00:00:00 2001 From: elbachir-one Date: Thu, 27 Jun 2024 20:25:18 +0100 Subject: [PATCH] Aurant color scheme (Sunset) --- config.def.h | 58 +++++++++++++++++++++++----------------------------- 1 file changed, 26 insertions(+), 32 deletions(-) diff --git a/config.def.h b/config.def.h index 2cd740a..c204895 100644 --- a/config.def.h +++ b/config.def.h @@ -95,44 +95,38 @@ 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", - - /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", - - [255] = 0, - - /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", - "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + "#000000", + "#ffffff", + "#c990fc", + "#d6e9bb", + "#c8a0ef", + "#c697f2", + "#2fb0d7", + "#d39758", + "#c990fc", + "#f7c4d7", + "#fba5c8", + "#e0931e", + "#383e30", + "#565f4a", + "#7b866a", + "#a5b490", + + [255] = 0, + + "#add8e6", /* 256 -> cursor */ + "#555555", /* 257 -> rev cursor*/ + "#000000", /* 258 -> bg */ + "#f38813", /* 259 -> fg */ }; - - /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 258; -unsigned int defaultbg = 259; +unsigned int defaultfg = 259; +unsigned int defaultbg = 258; unsigned int defaultcs = 256; -static unsigned int defaultrcs = 257; +unsigned int defaultrcs = 257; /* * Default shape of cursor -- 2.45.2