Knockout

녹아웃

The default print setting that pre-clears a hole in the colours beneath, exactly the shape of whatever ink prints on top, so colours never mix.

Also known as: 판 파내기Trap knockout
···
html
<div class="stage" id="stage">
  <div class="colors"></div>
  <div class="letter" id="letter">K</div>
  <div class="tag" id="tag"></div>
</div>
css
.stage{position:relative;isolation:isolate;background:#fff;width:min(230px,60%);aspect-ratio:1;border-radius:14px;overflow:hidden;box-shadow:0 0 0 1px var(--line);display:grid;place-items:center}
.colors{position:absolute;inset:0;background-image:
    radial-gradient(circle at 25% 25%,#00b6d8 30%,transparent 32%),
    radial-gradient(circle at 65% 40%,#ff2ec4 30%,transparent 32%),
    radial-gradient(circle at 40% 70%,#ffe600 30%,transparent 32%);
  background-size:11px 11px;background-position:0 0,4px 4px,7px 2px;mix-blend-mode:multiply}
.letter{position:relative;font:900 96px/1 system-ui,sans-serif;color:#101014;mix-blend-mode:multiply}
.stage.on .letter{mix-blend-mode:normal}
.stage.on .colors::after{content:'';position:absolute;inset:0}
.tag{position:absolute;left:0;right:0;bottom:0;padding:7px 4px;text-align:center;font:700 10px/1.3 system-ui,sans-serif;color:#fff;background:rgba(0,0,0,.6)}
js
const stage = document.getElementById('stage');
const tag = document.getElementById('tag');
let on = false;
function apply(){
  stage.classList.toggle('on', on);
  tag.textContent = on ? '녹아웃 — 검정이 깨끗함' : '녹아웃 없음 — 색이 비쳐 탁함';
}
apply();
setInterval(() => { on = !on; apply(); }, 2200);

Process printing overlaps four plates — cyan, magenta, yellow, black. Drop black text straight on top with no special handling and the three colour dots underneath show through just enough to muddy the black. So most print software applies a "knockout" by default — it clears a hole in the CMY plates exactly where the black text sits, and prints black into that clean gap.

The name invites confusion with cutting a subject out of a photo's background (누끼, "cutout" in Korean design slang), but it's a completely different thing. A cutout happens during image editing — making the background transparent so only the subject remains. A knockout happens during prepress — clearing a hole so overlapping colour plates don't mix where they shouldn't.

Turn knockout off (so the top ink just overlaps everything beneath it) and colours mix into something muddier — but on the flip side, when plates are slightly misaligned, that overlap can actually hide the gap. That's exactly what overprint is for. Knockout and overprint handle the same trouble spot — where colours overlap — from opposite directions.

When to use

It's already the default in most print software, so you rarely toggle it yourself. If black looks muddy in a proof, check first whether knockout got switched off or overprint got applied where it shouldn't have.