Print

When to use CMYK

Every CMYK value you get from a web tool, including this one, is an arithmetic guess. It is useful for a preview and dangerous as a handover. This is what the number actually represents, what it leaves out, and how to hand a job to a printer without a surprise.

Two different physics

A screen is additive. It starts black and adds red, green and blue light; all three at full gives white. Ink is subtractive. It starts with white paper and removes wavelengths; cyan, magenta and yellow at full should give black and in practice give a muddy brown, which is why the K plate exists.

The two systems do not cover the same set of colors. Some things a screen does easily, ink cannot do at all, and a few things ink does with a spot color no screen will match. Conversion between them is not translation, it is a compromise, and someone has to decide what the compromise is.

What the formula on this site does

HueKit uses the naive conversion. Divide each channel by 255, take K = 1 - max(R', G', B'), then C = (1 - R' - K) / (1 - K) and the same for M and Y.

That is all it does. It is fully reversible, which is a hint that something is missing: a real conversion loses information, because the destination cannot hold everything the source can. Here is the round trip on six colors, showing that nothing is lost and therefore that nothing was modelled.

Total ink is the sum of the four channels. Commercial presses usually cap total ink coverage well below 400 percent, so a naive value can exceed what the press will accept.
ColorNaive CMYKBack to hexTotal ink
#00FFFFcmyk(100%, 0%, 0%, 0%)#00FFFF100%
#2563EBcmyk(84%, 58%, 0%, 8%)#2563EB150%
#FF0000cmyk(0%, 100%, 100%, 0%)#FF0000200%
#1A9D5Acmyk(83%, 0%, 43%, 38%)#1A9D5A165%
#0F0F12cmyk(17%, 17%, 0%, 93%)#0F0F12126%
#FFFFFFcmyk(0%, 0%, 0%, 0%)#FFFFFF0%

What a real conversion adds

A colour-managed conversion runs through an ICC profile, and the profile knows things the formula cannot:

  • The paper. Coated stock, uncoated stock and newsprint absorb ink differently. The same file prints noticeably darker on uncoated.
  • Dot gain. Ink spreads as it hits paper, so a 50 percent tint lands heavier than 50 percent. The profile compensates in advance.
  • Total ink limit. Presses cap combined coverage. Exceed it and the sheet does not dry, or it offsets onto the next one.
  • Black generation. How much neutral goes to the K plate rather than to CMY together. This is a choice, not a calculation, and it changes how a photograph looks.
  • Rendering intent. What to do with colors the press cannot reach: clip them to the nearest reproducible color, or compress the whole range so relationships survive.

None of that is in the number this site gives you. That is not a defect to be fixed later: a device independent CMYK does not exist, so no web tool can produce one.

The colors that will disappoint you

Saturated cyans, bright oranges and vivid greens are the usual casualties. A screen cyan like #00FFFF has an obvious formula answer, cmyk(100%, 0%, 0%, 0%), and yet nothing that comes off a four colour press looks like it. The electric quality is a property of emitted light, not of ink.

The practical consequence: if a brand color is one of these, decide early. Either accept the print version will be duller, or specify a spot colour for print and treat the screen value as the sibling rather than the source.

When you genuinely need CMYK

  • Filling a form field that demands it. A brand guideline template, a supplier portal. Give the naive value and say it is unprofiled.
  • Sanity checking. Very high total ink or an unexpectedly high K on a color that should be light usually means the source value is wrong.
  • Talking to a printer. As the start of the conversation, not the end. Ask which profile they want and convert in software that can apply it.

When you do not

Anything that stays on a screen. Web, app, video, presentation, social. Converting a screen color to CMYK and back to RGB to make it print safe is a habit from print workflows that does nothing but desaturate your design.

A safe handover

  1. Design in sRGB and keep the sRGB values as the source of truth.
  2. Ask the printer which ICC profile and paper stock they will use.
  3. Convert in software that applies that profile, with a stated rendering intent, not with a web formula.
  4. Ask for a proof on the actual stock for anything where the color matters. A screen preview of a CMYK value is still a screen.
  5. For a brand color that must be exact across print runs, use a spot colour and let the printer match it.

Related

Last updated by FusionStudios. Every value on this page is computed by the same functions the tools use. How this is calculated.