보석 톤

Jewel tones

에메랄드·사파이어·루비처럼 채도는 높지만 명도는 낮춰 깊고 진한 색들. 어두운 배경 위에서 가장 화려하게 보입니다.

다른 이름: Jewel colors보석색
···
html
<div class="wrap">
  <div class="sws" id="sws"></div>
  <div class="card" id="card">
    <b id="gname">EMERALD</b>
    <span id="ghex">#1c8c5e</span>
  </div>
</div>
css
.wrap{width:min(440px,92%);display:grid;gap:clamp(12px,3.2vmin,20px);justify-items:center}
.sws{display:flex;gap:clamp(6px,1.8vmin,10px)}
.sws i{display:block;width:clamp(20px,6vmin,30px);height:clamp(20px,6vmin,30px);border-radius:7px;border:1px solid rgba(255,255,255,.15);transition:transform .3s,outline-color .3s;outline:2px solid transparent;outline-offset:2px}
.card{padding:clamp(10px,2.8vmin,16px) clamp(18px,4.6vmin,26px);border-radius:14px;background:#14141c;display:grid;gap:4px;justify-items:center;transition:box-shadow .4s}
.card b{font:800 clamp(13px,3.4vmin,16px)/1 system-ui;letter-spacing:.06em;color:#f4f4f6}
.card span{font:700 clamp(9px,2.4vmin,11px)/1 ui-monospace,monospace;color:#9a9aa6}
js
function hslToHex(h, s, l) {
  s /= 100; l /= 100;
  var k = function (n) { return (n + h / 30) % 12; };
  var a = s * Math.min(l, 1 - l);
  var f = function (n) { return l - a * Math.max(-1, Math.min(k(n) - 3, Math.min(9 - k(n), 1))); };
  var hex = function (x) { return Math.round(x * 255).toString(16).padStart(2, '0'); };
  return '#' + hex(f(0)) + hex(f(8)) + hex(f(4));
}
var GEMS = [{ name: 'EMERALD', h: 150 }, { name: 'SAPPHIRE', h: 215 }, { name: 'RUBY', h: 350 }, { name: 'AMETHYST', h: 275 }, { name: 'TOPAZ', h: 40 }];
var S = 75, L = 35, active = 0;
var sws = document.getElementById('sws');
sws.innerHTML = GEMS.map(function (_, i) { return '<i id="c' + i + '"></i>'; }).join('');
var cells = GEMS.map(function (_, i) { return document.getElementById('c' + i); });
var hexes = GEMS.map(function (g) { return hslToHex(g.h, S, L); });
var gname = document.getElementById('gname'), ghex = document.getElementById('ghex'), card = document.getElementById('card');
function render() {
  cells.forEach(function (el, i) {
    el.style.background = hexes[i];
    el.style.outlineColor = i === active ? hexes[i] : 'transparent';
    el.style.transform = i === active ? 'scale(1.15)' : 'scale(1)';
  });
  gname.textContent = GEMS[active].name;
  ghex.textContent = hexes[active];
  card.style.boxShadow = '0 0 0 1px ' + hexes[active] + '55, 0 16px 34px ' + hexes[active] + '3a';
}
render();
setInterval(function () { active = (active + 1) % GEMS.length; render(); }, 2000);

보석 톤은 채도(S) 65~85%, 명도(L) 28~42% 구간의 색입니다. 명도가 낮아서 무겁고 고급스러운 인상을 주면서도, 채도가 높아 탁해 보이지 않습니다 — "어둡지만 탁하지 않다"가 핵심입니다.

에메랄드(H≈150), 사파이어(H≈215), 루비(H≈350), 자수정·아메시스트(H≈275), 토파즈(H≈40) 같은 이름들은 실제로는 각기 다른 색상값에 이 채도·명도 규칙을 적용한 결과입니다.

네이비·차콜처럼 어두운 중립 배경과 짝지으면 보석처럼 빛나 보이지만, 흰 배경 위에서는 그냥 진한 색으로만 보여 효과가 약해집니다. 럭셔리·뷰티·프리미엄 브랜드에서 자주 쓰입니다.

언제 쓰나

어두운 중립 배경과 함께 쓸 때만 "보석"처럼 보입니다. 흰 배경에서는 효과가 거의 사라집니다.