무드 조명

Mood lighting

밝기를 낮추고 색을 더해 공간의 분위기 자체를 연출하는 조명. 기능(밝게 보기)보다 감성(어떻게 느끼게 할지)이 목적입니다.

다른 이름: 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)}}

일반 조명이 "잘 보이게" 밝기를 채우는 것이 목적이라면, 무드 조명은 반대로 밝기를 낮추고 그림자를 남겨서 공간에 감정을 만드는 것이 목적입니다. 은은한 촛불, 낮게 깔리는 플로어 램프, 벽을 은은하게 씻어 내리는 간접등이 대표적인 도구입니다.

색은 보통 따뜻한 톤(주황·앰버)을 기본으로 두고, 필요하면 은은한 컬러 LED로 한 가지 색을 더해 특정 분위기(저녁의 노을빛, 파티의 활기)를 강조합니다. 밝기는 조광기로 전체의 10~30% 수준까지 낮추는 경우가 많으며, 광원 자체가 눈에 직접 보이지 않게 갓이나 간접 반사로 가리는 것이 중요합니다.

무드 조명만 켜두면 책을 읽거나 요리하기엔 너무 어두우므로, 레이어드 조명의 앰비언트·태스크 조명과 별개 회로로 분리해서 필요할 때만 무드 조명으로 전환할 수 있게 계획하는 것이 실무에서 흔한 방식입니다.

언제 쓰나

저녁 시간대나 손님을 맞을 때처럼 감성적인 분위기가 필요할 때만 씁니다. 앰비언트·태스크 조명과는 별도 회로로 두어 필요할 때 켜고 끌 수 있게 계획하세요.