Mood lighting

무드 조명

Lighting dimmed and tinted to set a room's atmosphere rather than to help anyone see clearly — the goal is how the space feels, not how well it's lit.

Also known as: Ambient mood lightingScene lighting
···
html
<div class="room">
<svg viewBox="0 0 400 250">
  <defs>
    <radialGradient id="warm" cx="50%" cy="35%" r="60%">
      <stop offset="0%" stop-color="#ffb066" stop-opacity=".5"/>
      <stop offset="100%" stop-color="#ffb066" stop-opacity="0"/>
    </radialGradient>
  </defs>
  <rect width="400" height="250" fill="#0a0a0e"/>
  <rect y="206" width="400" height="44" fill="#111115"/>
  <ellipse id="wash" cx="140" cy="150" rx="150" ry="110" fill="url(#warm)"/>
  <line x1="140" y1="206" x2="140" y2="110" stroke="#3a3a44" stroke-width="4"/>
  <path d="M110,110 L170,110 L182,150 L98,150 Z" fill="#caa06a"/>
  <ellipse cx="140" cy="196" rx="20" ry="6" fill="#222227"/>
  <rect x="300" y="188" width="46" height="18" rx="3" fill="#1c1c22"/>
  <rect x="316" y="170" width="14" height="18" rx="2" fill="#e9e2d0"/>
  <path id="flame" d="M323,163 q5,6 0,12 q-5,-6 0,-12" fill="#f2a154"/>
</svg>
</div>
css
.room{width:min(92%,480px);aspect-ratio:400/250}
.room svg{width:100%;height:100%;display:block}
#wash{animation:breathe 4.5s ease-in-out infinite}
#flame{animation:flick 1.2s ease-in-out infinite;transform-origin:323px 169px}
@keyframes breathe{0%,100%{opacity:.55}50%{opacity:1}}
@keyframes flick{0%,100%{transform:scaleY(1)}50%{transform:scaleY(1.2) translateX(1px)}}

Where ordinary lighting fills a room with enough brightness to see clearly, mood lighting does the opposite — it dims the room and leaves shadows in, specifically to create a feeling. A flickering candle, a low floor lamp, or a wash of indirect light along a wall are its usual tools.

The color usually stays warm — orange, amber — and a subtle colored LED sometimes adds a single accent tone to push a particular mood, like a sunset glow or party energy. Brightness is often dimmed down to 10–30% of full output, and hiding the light source itself behind a shade or indirect reflection matters more than usual.

Mood lighting alone is too dim to read or cook by, so a common practice is to wire it on a separate circuit from a room's ambient and task lighting, so it can be switched in only when it's actually wanted.

When to use

Use it for evenings or when hosting — whenever the mood matters more than visibility. Wire it separately from ambient and task lighting so it can be switched on only when it's wanted.