ブレンドモード
問題
AIエージェントは、デザインが明らかにブレンドモード(blend mode)を求めている場合でも、CSSブレンドモードに手を伸ばすことがほとんどありません。画像の上のテキストにはブレンドモードではなく不透明なオーバーレイ div を使い、画像の色調補正には background-blend-mode の方がシンプルなのに filter で行います。ブレンドモードを使う場合でも、isolation プロパティを忘れて、DOM上位の関係ない背景と意図せずブレンドしてしまうことがよくあります。
解決方法
CSSには2つのブレンドモードプロパティがあります。
mix-blend-mode— スタッキング順序において、要素の色がその直後のコンテンツとどのようにブレンドされるかを制御しますbackground-blend-mode— 要素自身の複数の背景レイヤー同士がどのようにブレンドされるかを制御します
両方とも同じブレンドモード値のセット(multiply、screen、overlay、darken、lighten、color-dodge、color-burn、difference、exclusion、soft-light など)を受け付けます。コンテナに isolation: isolate を設定すると、子要素のブレンドモードが親の背景に漏れ出すのを防げます。
コード例
画像を暗くするオーバーレイ
最も一般的なユースケース:写真の上に読みやすいテキストを表示する方法です。半透明の黒いオーバーレイの代わりに、multiply を使ってコントラストを保ちながら画像を暗くします。
.hero-overlay {
position: relative;
background: url("hero.jpg") center / cover;
}
.hero-overlay::before {
content: "";
position: absolute;
inset: 0;
background: hsl(220deg 60% 20%);
mix-blend-mode: multiply;
}
.hero-content {
position: relative;
z-index: 1;
color: white;
}
<section class="hero-overlay">
<div class="hero-content">
<h1>Hero Title</h1>
<p>Text is readable without a flat black overlay.</p>
</div>
</section>
multiply は画像のコントラストと色のバリエーションを保ちながら明るい部分を暗くします。すべてを均一にフラットにしてしまう rgba(0,0,0,0.5) オーバーレイとは異なります。
background-blend-mode による画像のカラーティンティング
/* Duotone effect */
.duotone {
background:
url("photo.jpg") center / cover,
linear-gradient(#1a1a2e, #3b82f6);
background-blend-mode: luminosity;
}
/* Warm tint */
.warm-tint {
background:
url("photo.jpg") center / cover,
hsl(30deg 80% 50%);
background-blend-mode: overlay;
}
/* Cool monochrome */
.cool-mono {
background:
url("photo.jpg") center / cover,
hsl(220deg 80% 30%);
background-blend-mode: color;
}
背景に適応するテキスト
テキストに mix-blend-mode: difference を設定すると、背景に対してテキストの色が反転し、ライト・ダークどちらの領域でも読みやすくなります。
.adaptive-text {
color: white;
mix-blend-mode: difference;
font-size: 3rem;
font-weight: 700;
}
ノックアウトテキスト効果
screen を使って、テキストが背景を「切り抜いて」見せるエフェクトを作成します。
.knockout-container {
background: url("texture.jpg") center / cover;
isolation: isolate;
}
.knockout-text {
background: black;
color: white;
mix-blend-mode: screen;
font-size: 4rem;
font-weight: 900;
padding: 20px;
}
screen は黒い部分を透明に、白い部分を不透明にします。そのため白いテキストからテクスチャが透けて見え、黒い背景は消えます。
isolation プロパティ
isolation: isolate がないと、ブレンドモードはDOMを上に伝播し、関係のない背景を含む要素の背後にあるすべてのコンテンツとブレンドしてしまいます。コンテナに isolation: isolate を設定すると、新しいスタッキングコンテキストが作成され、ブレンドが子要素内に限定されます。
/* Without isolation — text blends with page background too */
.card-broken {
background: white;
}
.card-broken .blend-text {
mix-blend-mode: multiply;
/* Multiplies with everything behind, including page background */
}
/* With isolation — blending stops at the card */
.card-fixed {
background: white;
isolation: isolate;
}
.card-fixed .blend-text {
mix-blend-mode: multiply;
/* Only multiplies with the card's white background */
}
ブレンドされた背景パターン
/* Plaid pattern using blended gradients */
.plaid {
background:
repeating-linear-gradient(
0deg,
hsl(220deg 80% 60% / 0.3) 0px,
hsl(220deg 80% 60% / 0.3) 20px,
transparent 20px,
transparent 40px
),
repeating-linear-gradient(
90deg,
hsl(350deg 80% 60% / 0.3) 0px,
hsl(350deg 80% 60% / 0.3) 20px,
transparent 20px,
transparent 40px
),
hsl(0deg 0% 95%);
background-blend-mode: multiply;
}
ブレンドモードによるホバーエフェクト
.image-card {
position: relative;
overflow: hidden;
}
.image-card img {
width: 100%;
display: block;
transition: filter 0.3s ease;
}
.image-card::after {
content: "";
position: absolute;
inset: 0;
background: hsl(220deg 80% 50%);
mix-blend-mode: soft-light;
opacity: 0;
transition: opacity 0.3s ease;
}
.image-card:hover::after {
opacity: 1;
}
クイックリファレンス:よく使うブレンドモード
/* Darken family — result is darker than both layers */
.darken { mix-blend-mode: darken; }
.multiply { mix-blend-mode: multiply; } /* most useful */
.color-burn { mix-blend-mode: color-burn; }
/* Lighten family — result is lighter than both layers */
.lighten { mix-blend-mode: lighten; }
.screen { mix-blend-mode: screen; } /* most useful */
.color-dodge { mix-blend-mode: color-dodge; }
/* Contrast family — darkens darks, lightens lights */
.overlay { mix-blend-mode: overlay; } /* most useful */
.soft-light { mix-blend-mode: soft-light; } /* subtle version */
.hard-light { mix-blend-mode: hard-light; }
/* Difference family — inverts based on brightness */
.difference { mix-blend-mode: difference; }
.exclusion { mix-blend-mode: exclusion; } /* softer version */
ライブプレビュー
AIがよくやるミス
- ブレンドモードの代わりに
rgba(0,0,0,0.5)オーバーレイを使う — 半透明の黒いオーバーレイは画像を均一にフラットにします。multiplyはコントラストと色のバリエーションを保持します。 isolation: isolateを忘れる — これがないと、ブレンドモードがDOMを上に伝播し、関係のない背景とブレンドして予期しない結果を生みます。mix-blend-modeとbackground-blend-modeを混同する —mix-blend-modeは要素をその背後にあるものとブレンドします。background-blend-modeは要素自身の背景レイヤー同士をブレンドします。- 見えない要素にブレンドモードを使う —
opacity: 0やdisplay: noneの要素にmix-blend-modeを設定しても効果はなく、無駄なコードになります。 - テキストの可読性を考慮しない —
differenceやexclusionのようなブレンドモードはテキストのコントラストが予測できません。常に背景のライト領域とダーク領域の両方でテストしましょう。 - インタラクティブ要素にブレンドモードを適用する — ブレンドモードにより、ボタンやリンクの色が背景によって予測不能になり、アクセシビリティを損なう可能性があります。
使い分け
- 画像オーバーレイ — コントラストをフラットにせずにヒーロー画像を暗くしたり色調補正する場合
- デュオトーンとカラーエフェクト —
background-blend-modeで色とluminosityまたはcolorモードを使い、Instagramのような画像処理を行う場合 - ノックアウトテキスト —
screenを使ってテキスト形状から背景テクスチャを透かして見せる場合 - 適応テキスト —
differenceを使って、画像のライト・ダーク両方の領域で読みやすいテキストを表示する場合 - 装飾的な背景 — 画像なしで複数のグラデーションレイヤーをブレンドしてリッチなパターンを作る場合