Color blocking (interior)

컬러 블로킹(인테리어)

Painting or covering distinct sections of a wall, floor or piece of furniture in flat, unblended colors that meet at a hard edge — the boundary between two colors becomes the design itself.

Also known as: Color drenchingPaint blocking
···
html
<div class="room">
<svg viewBox="0 0 400 250">
  <rect id="upper" x="0" y="0" width="400" height="150" fill="var(--accent)"/>
  <rect id="lower" x="0" y="150" width="400" height="60" fill="var(--fg)" opacity=".08"/>
  <rect y="210" width="400" height="40" fill="var(--muted)" opacity=".25"/>
  <rect x="150" y="160" width="140" height="42" rx="8" fill="var(--surface)" stroke="var(--line)" stroke-width="3"/>
  <rect x="158" y="140" width="50" height="22" rx="4" fill="var(--surface)" stroke="var(--line)" stroke-width="3"/>
  <rect x="232" y="140" width="50" height="22" rx="4" fill="var(--surface)" stroke="var(--line)" stroke-width="3"/>
</svg>
</div>
css
.room{width:min(92%,480px);aspect-ratio:400/250}
.room svg{width:100%;height:100%;display:block}
#upper{animation:swap 6s ease-in-out infinite}
@keyframes swap{0%,45%{fill:var(--accent)}55%,100%{fill:var(--accent-2)}}

This borrows graphic design's color blocking and applies it to a room: instead of blending or gradating, colors meet at a hard line — often at a set height from the floor, or along a diagonal — and switch abruptly. Painting the bottom and top of one wall in two different colors is a common version, often paired with "color drenching," where doors and trim get painted the same color as the wall.

Where that boundary sits changes the whole read of the room. Split it below eye level and the room feels cozy and lower; split it near the ceiling and the room reads taller. High-contrast color pairs make the line pop; close tones keep the split subtle.

Too many other colors in the furniture or fabrics compete with a color-blocked wall, and the room starts to feel busy — keeping the furniture around it fairly neutral lets the wall's color division stay the star.

When to use

Use it to give a plain white wall personality without committing to painting the whole room. Decide the boundary height first, and keep nearby furniture neutral so the color stays concentrated on the wall.