Programmers Palettes

MSX color palette as decimals values
hardware fixed index palette
 
01234567
89101112131415
 
values : main : hex : names : palettes
 
NOTES: fbterm256 decimal values, xterm256 hexidecimal values
NOTES: color 1 (black) has been incremented (R+1,G+1,B+1)
 
You can (also using an editor) select and copy entire columns
#
No.
html
color
official
name
comma+space
values
comma
values
fbterm
colors
CSS
rgb()
C/C++
array
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
_
#000000
#010101
#3eb849
#74d07d
#5955e0
#8076f1
#b95e51
#65dbef
#db6559
#ff897d
#ccc35e
#ded087
#3aa241
#b766b5
#cccccc
#ffffff
_
transparent
black
medium green
light green
dark blue
light blue
dark red
cyan
medium red
light red
dark yellow
light yellow
dark green
magenta
gray
white
_
0, 0, 0
1, 1, 1
62, 184, 73
116, 208, 125
89, 85, 224
128, 118, 241
185, 94, 81
101, 219, 239
219, 101, 89
255, 137, 125
204, 195, 94
222, 208, 135
58, 162, 65
183, 102, 181
204, 204, 204
255, 255, 255
_
0,0,0
1,1,1
62,184,73
116,208,125
89,85,224
128,118,241
185,94,81
101,219,239
219,101,89
255,137,125
204,195,94
222,208,135
58,162,65
183,102,181
204,204,204
255,255,255
_
0;0;0
1;1;1
62;184;73
116;208;125
89;85;224
128;118;241
185;94;81
101;219;239
219;101;89
255;137;125
204;195;94
222;208;135
58;162;65
183;102;181
204;204;204
255;255;255
_
rgb(0,0,0)
rgb(1,1,1)
rgb(62,184,73)
rgb(116,208,125)
rgb(89,85,224)
rgb(128,118,241)
rgb(185,94,81)
rgb(101,219,239)
rgb(219,101,89)
rgb(255,137,125)
rgb(204,195,94)
rgb(222,208,135)
rgb(58,162,65)
rgb(183,102,181)
rgb(204,204,204)
rgb(255,255,255)
_
char colors[][3] = { { 0, 0, 0 },
{ 1, 1, 1 },
{ 62, 184, 73 },
{ 116, 208, 125 },
{ 89, 85, 224 },
{ 128, 118, 241 },
{ 185, 94, 81 },
{ 101, 219, 239 },
{ 219, 101, 89 },
{ 255, 137, 125 },
{ 204, 195, 94 },
{ 222, 208, 135 },
{ 58, 162, 65 },
{ 183, 102, 181 },
{ 204, 204, 204 },
{ 255, 255, 255 } };
_
 
(in ./HW-MSX/): ls *dec* | grep -v "\.html"
HW-MSX-C-colors24-array-dec.h
HW-MSX-C-colors32-array-dec.h
HW-MSX-C-colors32-array-dec.h
HW-MSX-dec-24-RGB-comma.txt
HW-MSX-dec-24-RGB-semi-colon.txt
HW-MSX.fbterm.16colors.sh