Skip to content

Commit 10ad90b

Browse files
committed
Another alternative for text colors.
1 parent e6c721a commit 10ad90b

File tree

1 file changed

+45
-29
lines changed

1 file changed

+45
-29
lines changed

textcolor.c

+45-29
Original file line numberDiff line numberDiff line change
@@ -35,28 +35,25 @@
3535
* could interpret this but it doesn't seem to be available
3636
* anymore so we use a different interface.
3737
*
38-
* References:
38+
* Reference:
3939
* http://en.wikipedia.org/wiki/ANSI_escape_code
40-
* http://academic.evergreen.edu/projects/biophysics/technotes/program/ansi_esc.htm
4140
*
4241
*
4342
4443
>>>> READ THIS PART!!! <<<<
4544
4645
*
4746
*
48-
* Problem: The ANSI escape sequences, used on Linux, allow 8 basic colors.
47+
* Problem: Years ago, when I started on this...
48+
*
49+
* The ANSI escape sequences, used for text colors, allowed 8 basic colors.
4950
* Unfortunately, white is not one of them. We only have dark
5051
* white, also known as light gray. To get brighter colors,
5152
* we need to apply an attribute. On some systems, the bold
5253
* attribute produces a brighter color rather than a bold font.
5354
* On other systems, we need to use the blink attribute to get
5455
* bright colors, including white. However on others, blink
5556
* does actually produce blinking characters.
56-
*
57-
* Several people have also complained that bright green is
58-
* very hard to read against a light background. The current
59-
* implementation does not allow easy user customization of colors.
6057
*
6158
* Previously, the only option was to put "-t 0" on the command
6259
* line to disable all text color. This is more readable but
@@ -68,13 +65,17 @@
6865
* It always sends the same color control codes rather than
6966
* detecting the terminal type and adjusting its behavior.
7067
*
68+
* Version 1.6:
69+
*
7170
* For a long time, there was a compile time distinction between
7271
* ARM (e.g. Raspberry Pi) and other platforms. With the arrival
7372
* of Raspbian Buster, we get flashing and the general Linux settings
7473
* work better.
7574
*
7675
* Since there doesn't seem to be a single universal solution,
7776
* the text color option will now be allowed to have multiple values.
77+
* Several people have also complained that bright green is
78+
* very hard to read against a light background so only dark green will be used.
7879
*
7980
*--------------------------------------------------------------------*/
8081

@@ -92,47 +93,58 @@
9293

9394
#else /* Linux, BSD, Mac OSX */
9495

95-
9696
// Alternative 1:
9797

98+
// Using RGB colors - New in version 1.6.
99+
// Since version 1.2, we've been using RGB to set the background to white.
100+
// From this we can deduce that pretty much everyone recognizes RGB colors by now.
101+
// The only known exception was PuTTY 0.70 and this has been rectified in 0.71.
102+
// Instead of picking 1 of 8 colors, and using some attribute to get bright, just specify it directly.
103+
// This should eliminate the need to reset the background after messing with the bright/bold/blink
104+
// attributes to get more than 8 colors.
105+
106+
107+
// Alternative 2:
108+
98109
// Was new in version 1.2, as suggested by IW2DHW.
99110
// Tested with gnome-terminal and xterm.
100111
// Raspbian Buster LXTerminal also likes this.
101-
// (Should go back and check earlier versions - at one time I intentionally made ARM different.)
112+
// There was probably an issue with an earlier release because I intentionally made ARM different at one time.
102113

103114
// Here we are using the RGB color format to set the background.
104-
// Alas, PuTTY doesn't recognize the RGB format so the background is not set.
115+
// PuTTY 0.70 doesn't recognize the RGB format so the background is not set.
116+
// Instead of complaining about it, just upgrade to PuTTY 0.71.
105117

106118

107-
// Alternative 2:
119+
// Alternative 3:
108120

109-
// We need "blink" (5) rather than the expected bright/bold (1)
110-
// attribute to get bright white background on some terminals.
121+
// For some terminals we needed "blink" (5) rather than the expected bright/bold (1)
122+
// attribute to get bright white background.
111123
// Makes no sense but I stumbled across that somewhere.
112124

113-
// This is your best choice for PuTTY. Background (around text but not rest of line) is set to white.
125+
// In some cases, you might find background (around text but not rest of line) is set to white.
114126
// On GNOME Terminal and LXTerminal, this produces blinking text with a gray background.
115127

116128

117-
// Alternative 3:
129+
// Alternative 4:
118130

119131
// This is using the bright/bold attribute, as you would expect from the documentation.
120132
// Whenever a dark color is used, the background is reset and needs to be set again.
121133
// In recent tests, background is always gray, not white like it should be.
122134

123135

124-
#define MAX_T 3
136+
#define MAX_T 4
125137

126-
static const char *t_background_white[MAX_T+1] = { "", "\e[48;2;255;255;255m", "\e[5;47m", "\e[1;47m" };
138+
static const char *t_background_white[MAX_T+1] = { "", "\e[48;2;255;255;255m", "\e[48;2;255;255;255m", "\e[5;47m", "\e[1;47m" };
127139

128-
static const char *t_black[MAX_T+1] = { "", "\e[0;30m" "\e[48;2;255;255;255m", "\e[0;30m" "\e[5;47m", "\e[0;30m" "\e[1;47m" };
129-
static const char *t_red[MAX_T+1] = { "", "\e[1;31m" "\e[48;2;255;255;255m", "\e[1;31m" "\e[5;47m", "\e[1;31m" "\e[1;47m" };
130-
static const char *t_green[MAX_T+1] = { "", "\e[1;32m" "\e[48;2;255;255;255m", "\e[1;32m" "\e[5;47m", "\e[1;32m" "\e[1;47m" };
131-
static const char *t_dark_green[MAX_T+1]= { "", "\e[0;32m" "\e[48;2;255;255;255m", "\e[0;32m" "\e[5;47m", "\e[0;32m" "\e[1;47m" };
132-
static const char *t_yellow[MAX_T+1] = { "", "\e[1;33m" "\e[48;2;255;255;255m", "\e[1;33m" "\e[5;47m", "\e[1;33m" "\e[1;47m" };
133-
static const char *t_blue[MAX_T+1] = { "", "\e[1;34m" "\e[48;2;255;255;255m", "\e[1;34m" "\e[5;47m", "\e[1;34m" "\e[1;47m" };
134-
static const char *t_magenta[MAX_T+1] = { "", "\e[1;35m" "\e[48;2;255;255;255m", "\e[1;35m" "\e[5;47m", "\e[1;35m" "\e[1;47m" };
135-
static const char *t_cyan[MAX_T+1] = { "", "\e[0;36m" "\e[48;2;255;255;255m", "\e[0;36m" "\e[5;47m", "\e[0;36m" "\e[1;47m" };
140+
static const char *t_black[MAX_T+1] = { "", "\e[38;2;0;0;0m", "\e[0;30m" "\e[48;2;255;255;255m", "\e[0;30m" "\e[5;47m", "\e[0;30m" "\e[1;47m" };
141+
static const char *t_red[MAX_T+1] = { "", "\e[38;2;255;0;0m", "\e[1;31m" "\e[48;2;255;255;255m", "\e[1;31m" "\e[5;47m", "\e[1;31m" "\e[1;47m" };
142+
static const char *t_green[MAX_T+1] = { "", "\e[38;2;0;255;0m", "\e[1;32m" "\e[48;2;255;255;255m", "\e[1;32m" "\e[5;47m", "\e[1;32m" "\e[1;47m" };
143+
static const char *t_dark_green[MAX_T+1]= { "", "\e[38;2;0;192;0m", "\e[0;32m" "\e[48;2;255;255;255m", "\e[0;32m" "\e[5;47m", "\e[0;32m" "\e[1;47m" };
144+
static const char *t_yellow[MAX_T+1] = { "", "\e[38;2;255;255;0m", "\e[1;33m" "\e[48;2;255;255;255m", "\e[1;33m" "\e[5;47m", "\e[1;33m" "\e[1;47m" };
145+
static const char *t_blue[MAX_T+1] = { "", "\e[38;2;0;0;255m", "\e[1;34m" "\e[48;2;255;255;255m", "\e[1;34m" "\e[5;47m", "\e[1;34m" "\e[1;47m" };
146+
static const char *t_magenta[MAX_T+1] = { "", "\e[38;2;255;0;255m", "\e[1;35m" "\e[48;2;255;255;255m", "\e[1;35m" "\e[5;47m", "\e[1;35m" "\e[1;47m" };
147+
static const char *t_cyan[MAX_T+1] = { "", "\e[38;2;0;255;255m", "\e[0;36m" "\e[48;2;255;255;255m", "\e[0;36m" "\e[5;47m", "\e[0;36m" "\e[1;47m" };
136148

137149

138150
/* Clear from cursor to end of screen. */
@@ -148,10 +160,14 @@ static const char clear_eos[] = "\e[0J";
148160
/*
149161
* g_enable_color:
150162
* 0 = disable text colors.
151-
* 1 = default, should be good for LXTerminal, GNOME Terminal, xterm.
152-
* 2 = alternative, best choice for PuTTY (i.e. remote login from Windows PC to Linux).
153-
* 3 = another alternative. Additional suggestions are welcome.
154-
* others... future possibility.
163+
* 1 = default, should be good for LXTerminal >= 0.3.2, GNOME Terminal, xterm, PuTTY >= 0.71.
164+
* 2 = what we had for a few earlier versions. Should be good for LXTerminal, GNOME Terminal, xterm.
165+
* 3 = use 8 basic colors, blinking attribute to get brighter color. Best for older PuTTY.
166+
* 4 = use 8 basic colors, bold attribute to get brighter color.
167+
*
168+
* others... future possibility - tell me if none of these work properly for your terminal type.
169+
*
170+
* 9 (more accurately any invalid value) = try all of them and exit.
155171
*/
156172

157173
static int g_enable_color = 1;

0 commit comments

Comments
 (0)