Accent wall

액센트 월

Treating one wall in a room differently from the rest — a bolder color or material — to give the eye a place to land. It only reads as an accent if the other walls stay neutral.

Also known as: Feature wall
···
html
<div class="room">
<svg viewBox="0 0 400 250">
  <rect width="400" height="250" fill="var(--surface)"/>
  <rect id="backwall" x="60" y="16" width="280" height="170" fill="var(--line)"/>
  <rect y="186" width="400" height="64" fill="var(--muted)" opacity=".2"/>
  <rect x="20" y="16" width="40" height="170" fill="var(--surface)" stroke="var(--line)" stroke-width="2"/>
  <rect x="340" y="16" width="40" height="170" fill="var(--surface)" stroke="var(--line)" stroke-width="2"/>
  <rect x="130" y="150" width="140" height="46" rx="8" fill="var(--fg)" opacity=".6"/>
  <rect x="130" y="120" width="140" height="34" rx="10" fill="var(--fg)" opacity=".75"/>
  <rect x="150" y="96" width="30" height="26" rx="4" fill="var(--fg)" opacity=".4"/>
  <rect x="220" y="96" width="30" height="26" rx="4" fill="var(--fg)" opacity=".4"/>
</svg>
</div>
css
.room{width:min(92%,480px);aspect-ratio:400/250}
.room svg{width:100%;height:100%;display:block}
#backwall{transition:fill .8s}
#backwall.on{fill:var(--accent)}
js
const wall = document.getElementById('backwall');
setInterval(() => wall.classList.toggle('on'), 1800);

Instead of painting all four walls the same color, paint or finish just one — usually the wall behind a bed's headboard or a sofa, wherever the eye naturally lands — in a bolder color, pattern or material, letting that single wall act as the room's anchor.

Which wall gets picked matters. The wall facing the entrance, or the one that long-stay furniture like a bed or sofa backs onto, is usually the safest choice. A wall with a window is often skipped, since a bold finish there tends to block light.

An accent wall only works if the other three stay neutral. Give another wall a strong color or pattern too and the room now has competing focal points — once one wall is chosen as the accent, the rule is to keep everything else restrained.

When to use

Use it to add impact to an all-white room without much cost. Prioritize the wall a bed or sofa backs onto, or the one facing the entrance, and skip a wall with a window.