Skip to content

Color Wheel

What It Does

Generates a set of colors arranged in a color wheel pattern. Starting from a base hue, it creates a specified number of colors by rotating around the color wheel at consistent intervals, while maintaining the same saturation and lightness values.

Inputs

NameDescriptionTypeRequired
baseHueThe starting hue angle (0-360 degrees)NumberNo
angleThe total angle to rotate around the color wheelNumberNo
saturationThe saturation percentage for all colors (0-100)NumberNo
lightnessThe lightness percentage for all colors (0-100)NumberNo
colorsThe number of colors to generateNumberNo

Outputs

NameDescriptionType
valueAn array of evenly spaced colorsList of Colors

How to Use It

  1. Drag the Color Wheel node into your graph.
  2. Set the "baseHue" to your starting hue angle (default is 360/0, which is red).
  3. Set the "angle" to determine how far around the wheel to go (default is 180 degrees).
  4. Adjust "saturation" and "lightness" to control the vibrancy and brightness (defaults are 80%).
  5. Set the "colors" value to determine how many colors to generate (default is 8).
  6. Run the graph—your output will be an array of colors evenly distributed around the wheel.
  7. Connect a Color Scale preview node to visualise your output.

Tips

  • For a full color wheel, set angle to 360 degrees.
  • For complementary colors, use 2 colors with angle 180.
  • For triadic colors, use 3 colors with angle 360.
  • For analogous colors, use 3-5 colors with a smaller angle (30-60 degrees).

See Also

  • Range: For creating a range between two specific colors.
  • Scale Colors: For generating a graduated scale of a single color.
  • Mix Colors: For blending between two specific colors.

Use Cases

  • Color Harmonies: Create complementary, triadic, or other color schemes.
  • Data Visualization: Generate distinct colors for charts and graphs.
  • UI Theming: Develop consistent color families for interface elements.