HEX and RGB
HEX is a six-character code prefixed with # that represents red, green, and blue channels in hexadecimal. RGB uses decimal values from 0 to 255 for each channel. Both describe the same additive color space; HEX is simply a compact notation for the same RGB triplet.
HSL Color Model
HSL stands for Hue, Saturation, and Lightness. Hue is a degree on the color wheel (0-360), saturation is the intensity as a percentage, and lightness controls how bright or dark the color appears. HSL is often easier to adjust programmatically because you can shift lightness without altering the hue.
CMYK for Print
CMYK represents Cyan, Magenta, Yellow, and Key (black) and is the standard model for print production. Converting from RGB to CMYK involves mapping additive screen colors to subtractive ink percentages. Results may vary depending on the printer profile and paper stock.
Tailwind CSS Color Utilities
Tailwind CSS ships with a curated palette of named color classes such as bg-blue-500 or text-emerald-700. This tool finds the nearest Tailwind class to your selected color, making it easy to stay within the framework palette while matching a specific color from a design comp.





