Overview
Extracts the Nth color from a palette. Referencing colors by palette index instead of specifying them directly lets a graph update all its colors together simply by replacing the palette.
Usage tips
- Wire colors by index—for example, palette color 1 for outlines and color 2 for
fills—so changes to
palette_createor a shared palette propagate throughout the graph. This centralizes color management. - Drive the index with a waveform or integer input to cycle through palette colors, creating a simulated palette-cycle animation.
- Use this when you need one color, not an operation that consumes the whole palette such as quantize or gradient_map.
Related nodes
palette_create/common_palette_ref— source palettescolor_rgb— supply a single color without a palettepalette_cycle— full palette cyclingint_input— control the index externally
Technical details
- An out-of-range index is clamped to the first or last color.
- An empty palette outputs the default color, black.
- Promote the Index parameter to an input pin 📌 to control it dynamically from another node.
Examples
- Select one specific color from the output of Palette Create.
- Control the index with an Int node or animation node to retrieve palette colors in sequence.