조명 색온도

Lighting color temperature

같은 밝기라도 빛의 색이 따뜻한 주황(약 2700K)인지 차가운 흰색(약 6500K)인지에 따라 공간의 분위기가 완전히 달라집니다.

다른 이름: Kelvin color temperatureWarm vs cool light
···
html
<div class="room">
<svg viewBox="0 0 400 250">
  <defs>
    <linearGradient id="kgrad" x1="0" x2="1">
      <stop offset="0%" stop-color="#ff9c4a"/>
      <stop offset="50%" stop-color="#fff4e0"/>
      <stop offset="100%" stop-color="#bcdcff"/>
    </linearGradient>
  </defs>
  <rect width="400" height="250" fill="#0c0c11"/>
  <line x1="200" y1="0" x2="200" y2="60" stroke="#444" stroke-width="2"/>
  <circle id="bulb" cx="200" cy="66" r="12" fill="#ff9c4a"/>
  <path id="cone" d="M200,66 L120,220 L280,220 Z" fill="#ff9c4a" opacity=".28"/>
  <ellipse id="pool" cx="200" cy="222" rx="90" ry="16" fill="#ff9c4a" opacity=".35"/>
  <rect x="90" y="236" width="220" height="10" rx="5" fill="url(#kgrad)"/>
  <circle id="knob" cx="90" cy="246" r="7" fill="#fff" stroke="#111" stroke-width="1.5"/>
</svg>
<div class="kread" id="kread">2700K</div>
</div>
css
.room{width:min(92%,480px);aspect-ratio:400/250;position:relative}
.room svg{width:100%;height:100%;display:block}
.kread{position:absolute;left:50%;bottom:4%;transform:translateX(-50%);
  font:700 clamp(10px,2.6vmin,13px) ui-monospace,monospace;color:var(--fg);
  background:rgba(0,0,0,.35);padding:2px 8px;border-radius:8px;letter-spacing:.04em}
js
const bulb = document.getElementById('bulb');
const cone = document.getElementById('cone');
const pool = document.getElementById('pool');
const knob = document.getElementById('knob');
const kread = document.getElementById('kread');
const stops = [
  { k: 2700, color: '#ff9c4a', x: 90 },
  { k: 4000, color: '#ffe3bd', x: 200 },
  { k: 6500, color: '#cfe6ff', x: 310 },
];
let i = 0;
function apply(s) {
  bulb.setAttribute('fill', s.color);
  cone.setAttribute('fill', s.color);
  pool.setAttribute('fill', s.color);
  knob.setAttribute('cx', s.x);
  kread.textContent = s.k + 'K';
}
apply(stops[0]);
setInterval(() => { i = (i + 1) % stops.length; apply(stops[i]); }, 1600);

색온도는 켈빈(K) 단위로 표시하며, 숫자가 낮을수록 촛불이나 백열등처럼 따뜻한 주황빛, 높을수록 한낮의 흐린 하늘처럼 차갑고 푸른 흰빛에 가까워집니다. 직관과 반대로 "차가운 색"에 더 높은 숫자가 붙습니다.

일반적으로 2700~3000K는 침실·거실처럼 편안함이 중요한 공간에, 4000K 안팎의 중간 색온도는 주방·욕실처럼 밝으면서도 자연스러운 느낌이 필요한 공간에, 5000~6500K는 작업 집중이 중요한 사무 공간이나 진열장 조명에 주로 씁니다.

한 공간 안에 색온도가 다른 조명을 섞으면(예: 주광색 형광등 옆에 전구색 스탠드) 두 빛이 부딪혀 어색해 보이므로, 방 하나 안에서는 색온도를 통일하는 것이 원칙입니다. 최근에는 하나의 조명 안에서 색온도를 시간대별로 바꿀 수 있는 튜너블 화이트 제품도 널리 쓰입니다.

언제 쓰나

침실·거실은 2700~3000K, 작업 공간은 4000K 이상으로 시작해 보세요. 한 방 안에서는 조명 색온도를 통일하는 것이 원칙입니다.