Frequently Asked Questions
What is HEX color format?
HEX (hexadecimal) color notation represents colors as a six-digit code prefixed with #. Each pair of digits represents the red, green, and blue channels on a scale from 00 (0) to FF (255). For example, #ff0000 is pure red and #6366f1 is the indigo used in NexKit's brand color.
What is HSL color format?
HSL stands for Hue, Saturation, and Lightness. Hue is a degree on the color wheel (0β360), where 0 is red, 120 is green, and 240 is blue. Saturation is the intensity of the color (0% is grey, 100% is full color). Lightness controls brightness (0% is black, 100% is white). HSL is often more intuitive than RGB for designers because adjusting lightness or saturation is straightforward.
How to convert HEX to RGB?
To convert HEX to RGB, split the six-digit hex code into three pairs and convert each from hexadecimal to decimal. For example, #6366f1 splits into 63 (99 in decimal), 66 (102), and f1 (241), giving rgb(99, 102, 241). This tool performs the conversion instantly β just type or paste a hex color.