CMYK Color Reference

Common CMYK values for print design. C=Cyan, M=Magenta, Y=Yellow, K=Black (0–100%).

Back to all tools on ToolForge

More in Images & Colors

ColorCMYKHEXSwatch

About CMYK Color Reference

CMYK (Cyan, Magenta, Yellow, Key/Black) is used in print. Values are 0–100%. This reference lists common colors with approximate HEX equivalents for screen preview.

Useful for print design, branding and color matching between screen and print.

Understanding the CMYK Color Model

CMYK is a subtractive color model where inks absorb specific light wavelengths:

CMYK to HEX Conversion Formula

// Convert CMYK (0-100) to RGB
function cmykToRgb(c, m, y, k) {
  c = c / 100; m = m / 100; y = y / 100; k = k / 100;

  const r = 255 * (1 - c) * (1 - k);
  const g = 255 * (1 - m) * (1 - k);
  const b = 255 * (1 - y) * (1 - k);

  return {
    r: Math.round(r),
    g: Math.round(g),
    b: Math.round(b)
  };
}

// Convert RGB to HEX
function rgbToHex(r, g, b) {
  return "#" + [r, g, b].map(x => {
    const hex = x.toString(16);
    return hex.length === 1 ? "0" + hex : hex;
  }).join("");
}

// Example: CMYK(0, 100, 100, 0) → RGB(255, 0, 0) → HEX #FF0000

Common CMYK Color Values

ColorCMYK ValuesHEX ApproximationUse Case
Black (Text)0, 0, 0, 100#000000Body text, fine details
Rich Black60, 40, 40, 100#000000Large black areas, backgrounds
White (Paper)0, 0, 0, 0#FFFFFFUnprinted paper stock
Process Red0, 100, 100, 0#ED1C24Branding, accents
Process Blue100, 50, 0, 0#0066FFCorporate colors
Process Green100, 0, 100, 0#00A651Eco-friendly branding
Warm Gray0, 0, 0, 30#B3B3B3Neutral backgrounds
Cool Gray0, 0, 0, 60#666666Sophisticated designs

Print Design Best Practices

Understanding Color Gamuts

Color SpaceTypeUse CaseGamut Size
CMYKSubtractiveOffset printing, digital printingSmallest
RGBAdditiveMonitors, TVs, digital displaysMedium
Adobe RGBAdditiveProfessional photographyLarger than sRGB
sRGBAdditiveWeb, consumer electronicsStandard
Pantone (PMS)Spot colorsBrand colors, special inksWidest (includes metallics, fluorescents)

Rich Black Formulas by Application

ApplicationCMYK FormulaNotes
Text/Fine Details0, 0, 0, 100Single ink avoids registration issues
Large Solid Areas60, 40, 40, 100Full, deep black
Thin Lines/Borders40, 30, 30, 100Reduced CMY to prevent buildup
FOGRA Standard50, 40, 40, 100European offset printing
GRACoL Standard60, 40, 40, 100North American commercial printing

Frequently Asked Questions

What is CMYK and how does it differ from RGB?
CMYK (Cyan, Magenta, Yellow, Key/Black) is a subtractive color model used in printing. Ink absorbs light wavelengths; combining all colors produces black. RGB (Red, Green, Blue) is additive, used for screens where light emission creates colors. CMYK has a smaller gamut than RGB, so some vibrant screen colors cannot be reproduced in print.
Why is black (K) needed in CMYK printing?
Combining 100% cyan, magenta, and yellow theoretically produces black, but in practice creates muddy brown due to ink impurities. Black ink (K) provides deeper shadows, sharper text, better detail, and reduces ink costs. Using K instead of CMY mixtures prevents paper saturation and improves drying time.
What is rich black and when should it be used?
Rich black combines black ink with CMY values (e.g., C:60 M:40 Y:40 K:100) for deeper, fuller blacks in large areas. Use rich black for backgrounds and large solid areas. Use 100% K only for text and fine details to avoid registration issues. Different printers have different rich black formulas.
How do you convert RGB to CMYK?
RGB to CMYK conversion requires color profiles (ICC profiles) for accuracy. Basic formula: K = 1 - max(R', G', B') where R', G', B' are normalized. Then C = (1-R'-K)/(1-K), M = (1-G'-K)/(1-K), Y = (1-B'-K)/(1-K). Professional tools like Photoshop use ICC profiles for gamut mapping and preserve visual intent.
What are common CMYK color profiles for print?
Common profiles include: GRACoL (commercial offset printing in North America), FOGRA39/FOGRA51 (European offset), Japan Color (Asian markets), and SWOP (web offset publication). Each profile defines ink behavior, dot gain, and color reproduction characteristics for specific printing conditions.
Why do printed colors look different from screen colors?
Screens emit light (RGB additive) with wider gamut; printers reflect light (CMYK subtractive) with limited gamut. Monitor calibration, ambient lighting, paper type, ink absorption, and dot gain affect appearance. Uncoated paper absorbs more ink, producing duller colors. Always request physical proofs for critical color matching.