Learn R Programming

textAnnotatoR (version 1.0.1)

hsl_to_rgb: Convert HSL to RGB color values

Description

Converts HSL (Hue, Saturation, Lightness) color values to RGB values. This allows for better control over color brightness and readability.

Usage

hsl_to_rgb(h, s, l)

Value

Character string containing a hex color code

Arguments

h

Numeric, hue value (0-360)

s

Numeric, saturation value (0-1)

l

Numeric, lightness value (0-1)