RGB to HSL
hsl(243, 100%, 68%)
What is RGB?
RGB (red, green, blue) is an additive color model used in digital displays, where colors are created by combining different intensities of red, green, and blue light. Each color channel typically ranges from 0 to 255, allowing for over 16 million possible colors. Example: RGB(99, 91, 255).
What is HSL?
HSL color model that represents colors using three components: hue (the base color), saturation (color intensity), and lightness (brightness). This model is often considered more intuitive for adjusting colors than RGB. Example HSL: (243, 100%, 68%).