Monochrome (achromatic) palette

무채색 팔레트

A palette with hue and saturation stripped away entirely, leaving only lightness — unlike a monochromatic scheme, this one has no color at all.

Also known as: Achromatic palette그레이스케일흑백 팔레트
···
html
<div class="wrap">
  <div class="chart" id="chart"></div>
  <div class="scale" id="scale"></div>
</div>
css
.wrap{width:min(420px,90%);display:grid;gap:clamp(10px,2.6vmin,16px)}
.chart{display:flex;align-items:flex-end;gap:8px;height:clamp(70px,20vmin,120px);border-bottom:2px solid var(--line);padding:0 4px}
.chart i{flex:1;border-radius:4px 4px 0 0;display:block}
.scale{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;height:clamp(14px,3.6vmin,20px)}
.scale i{border-radius:4px;display:block}
js
function gray(l) { return 'hsl(0, 0%, ' + l + '%)'; }
var STEPS = [10, 24, 38, 52, 66, 80, 94];
var scale = document.getElementById('scale');
scale.innerHTML = STEPS.map(function (_, i) { return '<i id="s' + i + '"></i>'; }).join('');
STEPS.forEach(function (l, i) { document.getElementById('s' + i).style.background = gray(l); });
var N = 6;
var chart = document.getElementById('chart');
chart.innerHTML = Array.from({ length: N }).map(function (_, i) { return '<i id="b' + i + '"></i>'; }).join('');
var bars = Array.from({ length: N }).map(function (_, i) { return document.getElementById('b' + i); });
function randomData() { return bars.map(function () { return 20 + Math.random() * 80; }); }
function render(vals) {
  vals.forEach(function (v, i) {
    bars[i].style.height = v + '%';
    var l = Math.max(10, Math.min(92, Math.round(94 - v * 0.75)));
    bars[i].style.background = gray(l);
  });
}
var vals = randomData();
render(vals);
setInterval(function () { vals = randomData(); render(vals); }, 2200);

Achromatic locks saturation (S) at 0 and steps lightness (L) alone from 0 to 100%. Written as HSL it looks like hsl(0, 0%, L%) — the hue number is meaningless, and the result is pure gray.

It is easy to confuse with "monochromatic" because the names sound alike, but they are different ideas. Monochromatic fixes one hue and varies saturation and lightness, so color survives; achromatic sets saturation to zero, so color disappears entirely.

Because there is no color, it looks identical to anyone with color blindness, and it can never clash with anything — which makes it a safe choice for backgrounds, borders, and disabled states. It also strips out whatever mood or energy color was carrying, so teams usually keep one separate accent color for anything that needs to stand out.

When to use

Use it for disabled states, borders, and backgrounds where color should never carry meaning. Add exactly one separate saturated accent if a focal point is needed.