Name
TintPalette -- tint palette (V9.0)
Synopsis
TintPalette(id, color, level)
Function
This function tints all colors in the palette specified by id with the RGB color specified in color using the tint level specified in level. The level argument must be between 0 (no tinting) to 255 (full tinting). Alternatively, level can also be a string containing a percent specification, e.g. "50%".

Inputs
id
identifier of the palette to tint
color
a RGB color to use for tinting
level
tint level (0 to 255 or percent specification)
Example
TintPalette(1, #RED, 128)
The code above adds some red to all colors in palette 1.

Show TOC