Color Converter
Convert between different color formats (HEX, RGB, HSL, OKLCH, RGBA, HSLA).
HEX (Hexadecimal)
#RRGGBB format with each color channel in 00-FF (0-255) range. Most widely used on the web.
RGB
Red, Green, and Blue values in the 0-255 range. Intuitive and easy to understand.
HSL
Hue, Saturation, and Lightness. Intuitive for color adjustments.
OKLCH
A modern perceptual color space. Composed of Lightness (L), Chroma (C), and Hue (H), designed to be closer to human vision.
RGBA/HSLA
RGB/HSL with an Alpha (transparency) channel. Ranges from 0 (fully transparent) to 1 (fully opaque).
CSS Variables
Reusable variable format for use in CSS. Useful for theming systems.