Xboard and colors
Posted: 17 Feb 2009, 06:18
How can I change the colors of the squares in xboard? The default colors are not good in a monitor I have. I would need to have something better to distinguish whether there is a black piece in a black (dark green) square. In version 4.2.7 I was using pixmaps but apparently they are now disabled. I looked for a solution but I cannot find any.
Miguel
[EDIT]
I hacked xboard to solve it.
In "common.h" I replace these lines:
Now I like the colors way much better in my monitor (BTW, I always found the default colors dreadful)
Maybe it is just me, but I wonder whether the default colors should be changed...
Miguel
[EDIT]
I hacked xboard to solve it.
In "common.h" I replace these lines:
- Code: Select all
/* old lines commented out
#define WHITE_PIECE_COLOR "#FFFFCC"
#define BLACK_PIECE_COLOR "#202020"
#define LIGHT_SQUARE_COLOR "#C8C365"
#define DARK_SQUARE_COLOR "#77A26D"
*/
/* new colors */
#define WHITE_PIECE_COLOR "#FFFFF0"
#define BLACK_PIECE_COLOR "#202020"
#define LIGHT_SQUARE_COLOR "#EEE9C4"
#define DARK_SQUARE_COLOR "#DBD295"
Now I like the colors way much better in my monitor (BTW, I always found the default colors dreadful)
Maybe it is just me, but I wonder whether the default colors should be changed...