User Rating 0.0 โ˜…โ˜…โ˜…โ˜…โ˜…
Total Usage 0 times
Type a color name or number. Fuzzy matching supported.
Is this tool helpful?

Your feedback helps us improve.

โ˜… โ˜… โ˜… โ˜… โ˜…

About

Colortone and Pantone references define color by name and number, not by device-native coordinates. Feeding a press operator "Colortone 485 C" is unambiguous on an offset press, but a browser renders pixels in R, G, B channels ranging 0 - 255. Mismatched conversions between spot-color systems and digital RGB cause visible hue drift, particularly in reds and deep blues where perceptual nonlinearity is steepest. This tool maps standardized Colortone/Pantone Solid Coated references to their canonical sRGB triplets using the published coated-stock data. It outputs simultaneous HEX and HSL representations so you can paste values directly into CSS, design software, or firmware color registers. Accuracy is limited to the sRGB gamut; out-of-gamut spot colors are clamped to the nearest reproducible coordinate, which may shift chroma by 2 - 5 ฮ”E units.

colortone rgb converter pantone to rgb color converter hex color hsl converter pantone colors

Formulas

RGB-to-HEX conversion encodes each channel as a two-digit hexadecimal string concatenated with a # prefix:

HEX = # + pad(R.toString(16)) + pad(G.toString(16)) + pad(B.toString(16))

RGB-to-HSL conversion normalizes channels to the range [0, 1], then derives hue from the dominant channel:

Rโ€ฒ = R255 , Gโ€ฒ = G255 , Bโ€ฒ = B255
L = Cmax + Cmin2
S =
{
0 if ฮ” = 0ฮ”1 โˆ’ |2L โˆ’ 1| otherwise

Where ฮ” = Cmax โˆ’ Cmin. The hue H is computed in 60ยฐ segments based on which channel is Cmax. WCAG contrast ratio uses relative luminance:

Lrel = 0.2126Rlin + 0.7152Glin + 0.0722Blin

Where Rlin is the linearized sRGB channel value. The contrast ratio between two luminances L1 and L2 is (L1 + 0.05) รท (L2 + 0.05), where L1 โ‰ฅ L2.

Reference Data

Colortone / PantoneSwatchHEXRGBCategory
Yellow C#FEDD002542210Primary Yellow
Red 032 C#EF33402395164Primary Red
Reflex Blue C#001489020137Primary Blue
Black C#2D2926454138Neutral
485 C#DA291C2184128Warm Red
186 C#C8102E2001646Red
300 C#005EB8094184Blue
349 C#046A38410656Green
021 C#FE5000254800Orange
Process Blue C#0085CA0133202Process Blue
Warm Red C#F9423A2496658Warm Red
Cool Gray 11 C#53565A838690Cool Gray
Cool Gray 1 C#D9D9D6217217214Cool Gray
Warm Gray 11 C#6E62591109889Warm Gray
116 C#FFCD002552050Yellow
185 C#E4002B228043Red
286 C#0032A0050160Blue
347 C#009639015057Green
151 C#FF82002551300Orange
513 C#93328E14750142Purple
7455 C#3A5DAE5893174Blue
7548 C#FFC6002551980Yellow
7625 C#C26E6019411096Earth Red
7467 C#00B0B90176185Teal
2685 C#56368A8654138Violet
7527 C#D6D2C4214210196Warm Gray
180 C#BE4D00190770Rust
2748 C#001E6203098Navy
7404 C#F5E1002452250Lemon
7462 C#1D4F912979145Marine

Frequently Asked Questions

Colortone and Pantone inks are spot colors mixed from base pigments. Their gamut exceeds sRGB in saturated oranges, greens, and violets. The converter clamps out-of-gamut values to the nearest sRGB coordinate, which can introduce a perceptual shift of 2-5 ฮ”E units. Always cross-reference with a physical swatch book for critical color matching.
The C suffix means the ink is printed on coated (glossy) stock, which absorbs less ink and produces more vivid color. U (uncoated) stock absorbs more, dulling saturation. The RGB values in this tool correspond to the Coated specification. Uncoated variants typically shift lightness by +5 to +15 units and reduce saturation by 10-20%.
Yes, the output values can be pasted into CSS as rgb(), hex, or hsl(). However, monitor calibration, viewing angle, and ambient light affect perception. For brand-critical work, pair these digital values with a hardware-calibrated display profiled to sRGB IEC 61966-2-1.
The tool uses Levenshtein distance to rank candidates. It returns the closest match if the edit distance is โ‰ค 3 characters. For distances > 3, no match is returned to avoid false positives. Searching by numeric code (e.g., 485) is always exact and preferred when you know the reference number.
No. This converter covers Pantone/Colortone Solid Coated spot colors only. Extended Gamut (XG) uses a 7-ink CMYK+OGV process with different spectral data. CMYK process conversions require an ICC profile transform, which is substrate-dependent and outside the scope of a spot-color lookup.
The contrast ratio compares the converted color's relative luminance against pure white (#FFFFFF). WCAG 2.0 Level AA requires โ‰ฅ 4.5:1 for normal text and โ‰ฅ 3:1 for large text (18px+ bold or 24px+ regular). A ratio below 3:1 means the color is unsuitable as a text color on white backgrounds without accessibility risk.