-
Notifications
You must be signed in to change notification settings - Fork 0
Colors
JongWasTaken edited this page Apr 18, 2024
·
3 revisions
This page lists all valid colors, since many options take a color as an argument.
"color" can either be the literal name of a color (ex. "green"), or a HEX color value prefixed with "#" (ex. "#FF00FF").
Literal color names get resolved based on this table:
Color | RGB Values |
---|---|
magenta |
255, 0, 255 |
pink |
255, 175, 175 |
dark_red |
139, 0, 0 |
green |
0, 255, 0 |
light_gray |
192, 192, 192 |
lime |
50, 205, 50 |
black |
0, 0, 0 |
yellow |
255, 255, 0 |
light_blue |
173, 216, 230 |
brown |
165, 42, 42 |
cyan |
0, 255, 255 |
red |
255, 0, 0 |
orange |
255, 200, 0 |
gray |
128, 128, 128 |
white |
255, 255, 255 |
blue |
0, 0, 255 |
lightblue |
173, 216, 230 |
darkred |
139, 0, 0 |
darkgray |
64, 64, 64 |
dark_gray |
64, 64, 64 |
purple |
160, 32, 240 |
lightgray |
192, 192, 192 |
If a literal color is not in the table above, book2map will instead try to derive a color of the same name from Minecraft's internal chat colors.
In case this also fails, the color will simply be set to black.