Posted by
| Nick Gammon
Australia (23,122 posts) Bio
Forum Administrator |
Message
| I would suggest that clients should have, as a default, the standard 16 ANSI colours, like this:
// standard 16 ANSI colours
xterm_256_colours [0] = RGB (0, 0, 0); // (black)
xterm_256_colours [1] = RGB (128, 0, 0); // (maroon)
xterm_256_colours [2] = RGB (0, 128, 0); // (green)
xterm_256_colours [3] = RGB (128, 128, 0); // (olive)
xterm_256_colours [4] = RGB (0, 0, 128); // (navy)
xterm_256_colours [5] = RGB (128, 0, 128); // (purple)
xterm_256_colours [6] = RGB (0, 128, 128); // (teal)
xterm_256_colours [7] = RGB (192, 192, 192); // (silver)
xterm_256_colours [8] = RGB (128, 128, 128); // (gray)
xterm_256_colours [9] = RGB (255, 0, 0); // (red)
xterm_256_colours [10] = RGB (0, 255, 0); // (lime)
xterm_256_colours [11] = RGB (255, 255, 0); // (yellow)
xterm_256_colours [12] = RGB (0, 0, 255); // (blue)
xterm_256_colours [13] = RGB (255, 0, 255); // (magenta)
xterm_256_colours [14] = RGB (0, 255, 255); // (cyan)
xterm_256_colours [15] = RGB (255, 255, 255); // (white)
In the early days of MUSHclient I had slightly different colours because I personally liked them more, but was convinced to go the "standard" route fairly early.
As for Zugg's forums, I monitor those from time to time, so I'll be interested to see what they say to you. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|