Digital colour values

HEX, RGB and HSL for pink colours

The same screen colour can be written in several ways. HEX and RGB describe red, green and blue channel values, while HSL reorganizes the same colour into hue, saturation and lightness. Each format is useful for a different kind of work.

What a HEX pink value represents

A six-digit HEX colour such as #FF69B4 contains three two-digit hexadecimal channel values. The first pair represents red, the second green and the third blue. Each pair can describe a value from 00 to FF, which corresponds to 0 through 255 in ordinary decimal RGB notation.

Hot Pink #FF69B4, for example, converts to RGB 255, 105, 180. The red channel is at maximum intensity, the green channel is lower and the blue channel sits between them. That balance produces a vivid pink on an RGB display.

How RGB describes pink

RGB describes emitted light on screens. Each channel normally runs from 0 to 255 in standard 8-bit notation. Increasing red while keeping blue present often produces pink and magenta directions, while increasing green can lighten or soften the result depending on the other channels.

RGB is precise for implementation, but it is not always intuitive for editing. If you want to make a pink lighter without substantially changing its hue, it can be difficult to know which three RGB numbers to adjust by inspection.

Why HSL is useful when comparing pink shades

HSL separates the colour into three concepts. Hue gives an angle around a colour wheel, saturation describes colour intensity and lightness describes the balance between black and white. This makes HSL easier to reason about when you want to create lighter, darker, softer or nearby versions of one pink.

Two pinks can have similar hue values but very different saturation and lightness. That explains why a pale blush and a vivid rose can still belong to a related hue family while looking very different in practice.

HEX and RGB are different notations for the same RGB colour

HEX does not define a different colour model from RGB. It is another way to write the same red, green and blue channel values. Converting between standard six-digit HEX and 8-bit RGB does not change the colour itself. HSL also describes an RGB colour through a different coordinate system, although rounding can slightly change displayed numbers during repeated conversions.

Digital values do not guarantee identical physical colour

A HEX value controls RGB light on a screen. Printers use inks, paints use pigments and fabrics depend on dyes, fibres, surface texture and lighting. CMYK conversions are therefore approximations rather than universal equivalents. For important print or product work, proof the colour using the actual production process instead of assuming a screen swatch will reproduce exactly.

Which format should you use?

Use HEX when you want compact values for CSS, design systems or documentation. Use RGB when you need direct channel control, transparency functions or software that expects numeric channels. Use HSL when you want to reason about hue relationships, saturation or lightness. The pink colour library exposes these values together on individual shade pages so you can move between formats without treating any one notation as the colour name itself.