Low-key lighting

로우키 조명

Lighting dominated by shadow rather than fill — a single strong source with almost no fill light, producing dramatic, high-contrast shading.

Also known as: 하이 콘트라스트 조명High-contrast lightingChiaroscuro
···
html
<div class="stage">
  <div class="beam"></div>
  <div class="sphere"></div>
  <div class="shadow"></div>
  <div class="gauge"><i></i></div>
</div>
css
.stage{position:absolute;inset:0;background:#050506;overflow:hidden}
.beam{position:absolute;left:-10%;top:-20%;width:60%;height:80%;
  background:radial-gradient(ellipse at 0% 20%,rgba(255,225,170,.22),transparent 65%)}
.sphere{position:absolute;left:50%;top:48%;width:44vmin;aspect-ratio:1;border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle at 30% 32%,#f4ead0 0,#8a6a3f 42%,#0a0806 78%);
  animation:sway 6s ease-in-out infinite}
@keyframes sway{0%,100%{background-position:0 0}50%{background-position:6% 4%}}
.shadow{position:absolute;left:50%;bottom:9%;width:32vmin;height:7%;border-radius:50%;
  transform:translateX(-50%);
  background:radial-gradient(ellipse,rgba(0,0,0,.7),transparent 70%)}
.gauge{position:absolute;right:6%;top:8%;width:26%;height:6px;border-radius:4px;
  background:linear-gradient(90deg,#050506,#cfcfd8)}
.gauge i{position:absolute;top:-3px;width:2px;height:12px;background:#ff5c6a;left:82%}

Standard lighting balances key, fill, and back lights so shadows stay soft and readable. Low-key does the opposite — pull the fill almost entirely and let the side the key doesn't reach fall into real darkness.

The key-to-fill ratio spikes, and shadow can cover more than half the frame. Film noir, thrillers, and horror lean on this style because the shadow itself does the storytelling — it implies an unseen threat or a hidden emotion the light won't show.

On the web, a near-black background and one strong radial-gradient highlight hitting a subject from one side gets the impression across. Don't soften the shadow side into gray — low-key's tension comes from keeping it close to pure black.

When to use

Use it for tension, mystery, or a premium mood. It also works in product photography to carve out form by lighting just one side hard.