Emboss / Deboss

형압(양각·음각)

A finishing technique that presses paper with a metal die to raise (emboss) or sink (deboss) a shape — visible purely through light and shadow, no ink required.

Also known as: 형압가공Blind embossDebossing
···
html
<div class="row">
  <div class="chip emb"><span class="cap">emboss</span></div>
  <div class="chip deb"><span class="cap">deboss</span></div>
</div>
css
.row{display:flex;gap:10%;align-items:center;justify-content:center;width:100%;height:100%}
.chip{width:min(130px,36vw);aspect-ratio:1;border-radius:20%;background:var(--bg);display:flex;align-items:flex-end;justify-content:center;padding-bottom:12px}
.emb{animation:embossLight 4s ease-in-out infinite}
.deb{animation:debossLight 4s ease-in-out infinite}
@keyframes embossLight{
  0%,100%{box-shadow:-8px -8px 14px rgba(255,255,255,.9),8px 8px 14px rgba(0,0,0,.4)}
  50%{box-shadow:-3px -10px 14px rgba(255,255,255,.9),3px 10px 14px rgba(0,0,0,.4)}
}
@keyframes debossLight{
  0%,100%{box-shadow:inset -8px -8px 14px rgba(255,255,255,.9),inset 8px 8px 14px rgba(0,0,0,.4)}
  50%{box-shadow:inset -3px -10px 14px rgba(255,255,255,.9),inset 3px 10px 14px rgba(0,0,0,.4)}
}
.cap{font:800 10px/1 ui-monospace,monospace;color:var(--fg);text-transform:uppercase;letter-spacing:.06em}

A die — a metal plate carved with the shape — presses into the paper under pressure, permanently raising it (emboss) or pressing it in (deboss). No ink is involved; the shape reads purely from touch, or from light raking across the surface at an angle.

Because it's perceived entirely through the shadow and highlight created by the paper's own contour, the same emboss can look completely different depending on where the light comes from. That's why photographing or simulating it with the light source slowly shifting sells the depth far better than a flat, evenly-lit shot.

It's frequently paired with foil (→ foil-stamping) — "emboss plus gold foil" shows up constantly on premium business cards and invitations. An emboss used entirely on its own, with no ink at all, is called a blind emboss.

When to use

Works best on simple, bold silhouettes like a logo mark or pattern. Avoid fine print or thin hairlines — the paper can tear or the impression can blur out.