So someone playing Unangband (which is now using main-gcu.c from V) noticed that all the text was being bolded, and commented that it made things look really ugly for him. I checked and sure enough all the text in 256 color mode is bolded.
It looks a lot better for me (in gnome-terminal and xterm) when those fonts are bolded. Also, it's worth noting that in 16 color mode (ANSI) 8 of the colors are bold and 8 aren't (and this can't be changed). I think I chose to bold all the colors because it seemed closer to the way things look in 16 color mode.
What are people's thoughts? I assume no one has noticed so far, or thought it was particularly bad. To see what it looks like unbolded, edit line 652 of main-gcu.c changing:
to:
Finally this could be a command-line option (or an environment variable), although I'm not excited about either of those.
Thoughts?
It looks a lot better for me (in gnome-terminal and xterm) when those fonts are bolded. Also, it's worth noting that in 16 color mode (ANSI) 8 of the colors are bold and 8 aren't (and this can't be changed). I think I chose to bold all the colors because it seemed closer to the way things look in 16 color mode.
What are people's thoughts? I assume no one has noticed so far, or thought it was particularly bad. To see what it looks like unbolded, edit line 652 of main-gcu.c changing:
Code:
colortable[i] = COLOR_PAIR(i + 1) | A_BRIGHT;
Code:
colortable[i] = COLOR_PAIR(i + 1);
Thoughts?
Comment