It is.
However color names that are followed by numbers are not generally regarded as a good thing, unless you are actually after a pre-prepared 4 color gradient. For example: khaki1, khaki2, kahki3, kahki4
The main reason for that is that the number '1' color does not always correspond to the X11 color name. In some cases none of the colors in the numbered gradient actually directly match the color without a number. For example "khaki" does not directly match any of the colors "khaki1" to "kahki4" though "khaki" is almost identical to "khaki2".
Code: Select all
convert -list color | grep khaki
khaki rgb(240,230,140) SVG X11 XPM
khaki1 rgb(255,246,143) X11
khaki2 rgb(238,230,133) X11
khaki3 rgb(205,198,115) X11
khaki4 rgb(139,134,78) X11
Basically numbered colors are typically avoided, unless you have a specific requirement (which I have never actually seen!). The only exception to this is gray# numbered colors....
ASIDE: gray50 is a perfect 50% gray color, but only if you restrict yourself to 24 bit colors (8 bit depth). It is not the same as a perfect 16 bit depth gray which you can get using gray(50%), whcih can be important for some mathematical image processing such as composition lighting effects, and other image mapping, and FFT.
That is to say even the gray# numbers are not always good enough either!