color_mix(color1,color2) Returns a 50/50 mixture of the two given colors.
color_multiply(color1,color2) Returns the given colors multiplied together.
color_scale(color,scale) Returns the given color with each component scaled by the given factor.
color_to_wavelength(color) Returns the approximate wavelength of the given color in nanometers.
color_to_cmyk(color [, channel]) Returns a ds_list containing CMYK values of the given color or the value of a specific color channel.
color_to_hex(color) Returns the given color as a hexadecimal string in RRGGBB format.
hex_to_color(hex) Returns a color generated from the given RRGGBB format hexadecimal string.
hex_to_rgb(hex,var_red,var_blue,var_green) Sets local variables named in the given strings var_red, var_blue, and var_green to the color components of the given RRGGBB format hexadecimal string.
make_color_random() Returns a randomly generated color.
rgb_to_cmyk(r,g,b [,channel]) Returns a ds_list containing CMYK values of the given color or the value of a specific color channel.
rgb_to_hex(r,g,b) Returns the given RGB color as a string of hexadecimal digits in RRGGBB format.
wavelength_to_hue(wavelength) Returns the approximate hue of the given wavelength (nanometers).