diff options
Diffstat (limited to 'st')
-rw-r--r-- | st/config.h | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/st/config.h b/st/config.h index 3b87a92..5c0ddbc 100644 --- a/st/config.h +++ b/st/config.h | |||
@@ -91,31 +91,33 @@ unsigned int tabspaces = 8; | |||
91 | 91 | ||
92 | /* Terminal colors (16 first used in escape sequence) */ | 92 | /* Terminal colors (16 first used in escape sequence) */ |
93 | static const char *colorname[] = { | 93 | static const char *colorname[] = { |
94 | /* 8 normal colors */ | 94 | /* 8 normal colors */ |
95 | "black", | 95 | "#000000", |
96 | "red3", | 96 | "#f07178", |
97 | "green3", | 97 | "#c3e88d", |
98 | "yellow3", | 98 | "#ffcb6b", |
99 | "blue2", | 99 | "#82aaff", |
100 | "magenta3", | 100 | "#c792ea", |
101 | "cyan3", | 101 | "#89ddff", |
102 | "gray90", | 102 | "#d0d0d0", |
103 | 103 | ||
104 | /* 8 bright colors */ | 104 | /* 8 bright colors */ |
105 | "gray50", | 105 | "#434758", |
106 | "red", | 106 | "#ff8b92", |
107 | "green", | 107 | "#ddffa7", |
108 | "yellow", | 108 | "#ffe585", |
109 | "#5c5cff", | 109 | "#9cc4ff", |
110 | "magenta", | 110 | "#e1acff", |
111 | "cyan", | 111 | "#a3f7ff", |
112 | "white", | 112 | "#ffffff", |
113 | 113 | ||
114 | [255] = 0, | 114 | [255] = 0, |
115 | 115 | ||
116 | /* more colors can be added after 255 to use with DefaultXX */ | 116 | /* more colors can be added after 255 to use with DefaultXX */ |
117 | "#cccccc", | 117 | "#282a36", |
118 | "#555555", | 118 | "#bbc5ff", |
119 | "#d7d7d7", | ||
120 | |||
119 | }; | 121 | }; |
120 | 122 | ||
121 | 123 | ||