| st-habamax-0.9.2.diff - sites - public wiki contents of suckless.org | |
| git clone git://git.suckless.org/sites | |
| Log | |
| Files | |
| Refs | |
| --- | |
| st-habamax-0.9.2.diff (1536B) | |
| --- | |
| 1 From 322592b399d54febf3a87a673b73678363dff1e0 Mon Sep 17 00:00:00 2001 | |
| 2 From: jose-isac <[email protected]> | |
| 3 Date: Sun, 27 Apr 2025 14:20:37 -0300 | |
| 4 Subject: [PATCH] Habamax color scheme | |
| 5 | |
| 6 Habamax, made by Maxim Kim, is one of Vim's default color schemes. | |
| 7 --- | |
| 8 config.def.h | 42 +++++++++++++++++++++--------------------- | |
| 9 1 file changed, 21 insertions(+), 21 deletions(-) | |
| 10 | |
| 11 diff --git a/config.def.h b/config.def.h | |
| 12 index 2cd740a..ffaca7a 100644 | |
| 13 --- a/config.def.h | |
| 14 +++ b/config.def.h | |
| 15 @@ -93,35 +93,35 @@ char *termname = "st-256color"; | |
| 16 */ | |
| 17 unsigned int tabspaces = 8; | |
| 18 | |
| 19 -/* Terminal colors (16 first used in escape sequence) */ | |
| 20 +/* Habamax terminal colors (16 first used in escape sequence) */ | |
| 21 static const char *colorname[] = { | |
| 22 /* 8 normal colors */ | |
| 23 - "black", | |
| 24 - "red3", | |
| 25 - "green3", | |
| 26 - "yellow3", | |
| 27 - "blue2", | |
| 28 - "magenta3", | |
| 29 - "cyan3", | |
| 30 - "gray90", | |
| 31 + "#1c1c1c", | |
| 32 + "#af5f5f", | |
| 33 + "#5faf5f", | |
| 34 + "#af875f", | |
| 35 + "#5f87af", | |
| 36 + "#af87af", | |
| 37 + "#5f8787", | |
| 38 + "#9e9e9e", | |
| 39 | |
| 40 /* 8 bright colors */ | |
| 41 - "gray50", | |
| 42 - "red", | |
| 43 - "green", | |
| 44 - "yellow", | |
| 45 - "#5c5cff", | |
| 46 - "magenta", | |
| 47 - "cyan", | |
| 48 - "white", | |
| 49 + "#767676", | |
| 50 + "#d75f87", | |
| 51 + "#87d787", | |
| 52 + "#d7af87", | |
| 53 + "#5fafd7", | |
| 54 + "#d787d7", | |
| 55 + "#87afaf", | |
| 56 + "#bcbcbc", | |
| 57 | |
| 58 [255] = 0, | |
| 59 | |
| 60 /* more colors can be added after 255 to use with DefaultXX */ | |
| 61 - "#cccccc", | |
| 62 - "#555555", | |
| 63 - "gray90", /* default foreground colour */ | |
| 64 - "black", /* default background colour */ | |
| 65 + "#ffffff", /* cursor background */ | |
| 66 + "#000000", /* cursor foreground */ | |
| 67 + "#bcbcbc", /* foreground colour */ | |
| 68 + "#1c1c1c", /* background colour */ | |
| 69 }; | |
| 70 | |
| 71 | |
| 72 -- | |
| 73 2.49.0 | |
| 74 |