Color Nodes
Color manipulation and conversion nodes for working with RGB, HSV, and other color spaces.
Color Nodes
Color manipulation and conversion nodes for working with RGB, HSV, and other color spaces.
This category contains 5 nodes.
Nodes
Color Grayscale
Converts a color to grayscale weighting (0.299R + 0.587G + 0.114B)
Inputs: RGBWAUV color with values in range [0, 255].
| Name | Type | Range | Default |
|---|---|---|---|
| Color | Color | color | [255, 255, 255, 255, 255, 255] |
Outputs: Grayscale color with white channels preserved, and normalized lightness value in range [0, 1].
| Name | Type | Range |
|---|---|---|
| Color | Color | color |
| Lightness | Number | any |
Combine Color
Constructs a color from individual channel values
Inputs: R, G, B, W, A, UV channel values, typically in range [0, 255].
| Name | Type | Range | Default |
|---|---|---|---|
| Red | Number | 0-255 | 0 |
| Green | Number | 0-255 | 0 |
| Blue | Number | 0-255 | 0 |
| White | Number | 0-255 | 0 |
| Amber | Number | 0-255 | 0 |
| UV | Number | 0-255 | 0 |
Outputs: Combined RGBWAUV color.
| Name | Type | Range |
|---|---|---|
| Color | Color | color |
HSL to RGB
Converts HSL color space to RGB
Inputs: Hue [0, 1] (0=red, cycling through rainbow), Saturation [0, 1] (0=gray, 1=full color), Lightness [0, 1] (0=black, 0.5=pure color, 1=white).
| Name | Type | Range | Default |
|---|---|---|---|
| Hue | Number | 0-1 | 0 |
| Saturation | Number | 0-1 | 0 |
| Lightness | Number | 0-1 | 0 |
Outputs: R, G, B values in range [0, 255].
| Name | Type | Range |
|---|---|---|
| Red | Number | 0-255 |
| Green | Number | 0-255 |
| Blue | Number | 0-255 |
RGBW to HSL
Converts RGBW color to HSL color space
Inputs: RGBWAUV color with values in range [0, 255], and a boolean to optionally merge white channel into RGB.
| Name | Type | Range | Default |
|---|---|---|---|
| Color | Color | color | [0, 0, 0, 0, 0, 0] |
| Merge White | Boolean | bool | false |
Outputs: Hue [0, 1], Saturation [0, 1], Lightness [0, 1].
| Name | Type | Range |
|---|---|---|
| Hue | Number | 0-1 |
| Saturation | Number | 0-1 |
| Lightness | Number | 0-1 |
Split Color
Splits a color into its individual RGBWAUV channel values
Inputs: RGBWAUV color.
| Name | Type | Range | Default |
|---|---|---|---|
| Color | Color | color | [0, 0, 0, 0, 0, 0] |
Outputs: Six separate channel values (R, G, B, W, A, UV), typically in range [0, 255].
| Name | Type | Range |
|---|---|---|
| Red | Number | 0-255 |
| Green | Number | 0-255 |
| Blue | Number | 0-255 |
| White | Number | 0-255 |
| Amber | Number | 0-255 |
| UV | Number | 0-255 |