Skip to content

CSS named color

BlanchedAlmond #FFEBCD

BlanchedAlmond (CSS keyword blanchedalmond) has the hex code #FFEBCD and the RGB value rgb(255, 235, 205): an off-white with a beige tint.

BlanchedAlmond#FFEBCD

Named after almonds with the skin removed, a pale cream with a hint of peach. It is nearly indistinguishable from papayawhip and bisque at small sizes.

Color codes for BlanchedAlmond

Color codes for BlanchedAlmond
CSS keywordblanchedalmond
HEX#FFEBCD
RGBrgb(255, 235, 205)
HSLhsl(36, 100%, 90%)
HWBhwb(36 80% 0%)
OKLCHoklch(94.8% 0.045 78.1)
CMYK (naive, no ICC profile)cmyk(0%, 8%, 20%, 0%)
Decimal16,772,045
Hue familyBrowns and tans

Contrast and accessibility

On blanchedalmond, black text has a contrast ratio of 18.01:1 and passes AAA at any text size; white text reaches 1.16:1.

WCAG 2.2 contrast ratios (success criteria 1.4.3 and 1.4.6: AA needs 4.5:1 for normal text and 3:1 for large text, AAA needs 7:1 and 4.5:1). APCA Lc is the lightness contrast from the APCA-W3 0.0.98G model proposed for WCAG 3; a higher absolute value is more readable, and Lc 75 is its suggested minimum for body text.

Contrast and accessibility
PairRatioAAAA largeAAAAAA largeAPCA Lc
Black text on blanchedalmond18.01:1PassPassPassPass95.7
White text on blanchedalmond1.16:1FailFailFailFail−9.3
Blanchedalmond text on white1.16:1FailFailFailFail7.9
Blanchedalmond text on black18.01:1PassPassPassPass−96.5

Tints and shades

Each step mixes blanchedalmond with white (tints) or black (shades) in gamma-encoded sRGB, the same result as color-mix(in srgb, blanchedalmond, white 25%) in CSS.

Tints (mixed with white)

  1. 5%
    #ffecd0
  2. 15%
    #ffeed5
  3. 25%
    #fff0da
  4. 35%
    #fff2df
  5. 45%
    #fff4e4
  6. 55%
    #fff6e9
  7. 65%
    #fff8ee
  8. 75%
    #fffaf3
  9. 85%
    #fffcf8
  10. 95%
    #fffefd

Shades (mixed with black)

  1. 5%
    #f2dfc3
  2. 15%
    #d9c8ae
  3. 25%
    #bfb09a
  4. 35%
    #a69985
  5. 45%
    #8c8171
  6. 55%
    #736a5c
  7. 65%
    #595248
  8. 75%
    #403b33
  9. 85%
    #26231f
  10. 95%
    #0d0c0a

Color harmonies

Rotating the hue in OKLCH while keeping lightness and chroma, blanchedalmond's complementary color is #DCF0FF (close to lavender), its analogous colors are #FFE6D4 and #F0F1CF, and its triadic partners are #CCF8F9 and #FBE5FF. For text on top, black gives the higher contrast.

Color harmonies
HarmonyRotationColor
Complementary+180°#dcf0ff
Analogous−30°, +30°#ffe6d4#f0f1cf
Triadic+120°, +240°#ccf8f9#fbe5ff
Split-complementary+150°, +210°#d0f5ff#eceaff

Computed in OKLCH: the hue is rotated by 180° (complementary), ±30° (analogous), ±120° (triadic) and 180° ±30° (split-complementary) while lightness and chroma stay fixed. Results that fall outside sRGB are brought back with the CSS Color 4 gamut mapping algorithm. Because this uses OKLCH, the values differ from tools that rotate hue in HSL, but every color keeps the same perceived lightness.

Warm or cool?

BlanchedAlmond is a warm color: its hue is 36° on the HSL wheel, in the red, orange and yellow range (0° to about 70°, plus reds above 330°) that is conventionally called warm.

Nearest named and Tailwind colors

Distance is ΔE OK, the Euclidean distance in OKLab multiplied by 100. Values under about 2 are hard to tell apart side by side.

Nearest CSS named colors

Nearest CSS named colors
ColorHEXΔE OK
papayawhip#ffefd51.2
antiquewhite#faebd71.4
bisque#ffe4c41.8

Nearest Tailwind v4 colors

Nearest Tailwind v4 colors
ColorHEXΔE OK
orange-100#ffedd40.9
amber-100#fef3c62.5
red-100#ffe2e24.2

Code snippets

CSS
.element {
  color: blanchedalmond;
  background-color: #ffebcd;
  border-color: rgb(255 235 205);
  outline-color: oklch(94.8% 0.045 78.1);
}
Tailwind CSS
<div class="bg-[#ffebcd] text-black">...</div>

/* or register it once in your CSS (Tailwind v4) */
@theme {
  --color-blanchedalmond: #ffebcd;
}
/* then use bg-blanchedalmond, text-blanchedalmond, border-blanchedalmond */
SwiftUI
import SwiftUI

extension Color {
  static let blanchedalmond = Color(red: 1.000, green: 0.922, blue: 0.804)
}
Jetpack Compose
import androidx.compose.ui.graphics.Color

val Blanchedalmond = Color(0xFFFFEBCD)
Flutter
import 'package:flutter/material.dart';

const blanchedalmond = Color(0xFFFFEBCD);
Android XML
<!-- res/values/colors.xml -->
<color name="blanchedalmond">#FFEBCD</color>

Frequently asked questions

What is the hex code for blanchedalmond?
The hex code for blanchedalmond is #FFEBCD. The same color is rgb(255, 235, 205), hsl(36, 100%, 90%) and oklch(94.8% 0.045 78.1), and in CSS you can also write the keyword blanchedalmond directly.
Is blanchedalmond a warm or cool color?
BlanchedAlmond is a warm color: its hue is 36° on the HSL wheel, in the red, orange and yellow range (0° to about 70°, plus reds above 330°) that is conventionally called warm.
What colors go with blanchedalmond?
Rotating the hue in OKLCH while keeping lightness and chroma, blanchedalmond's complementary color is #DCF0FF (close to lavender), its analogous colors are #FFE6D4 and #F0F1CF, and its triadic partners are #CCF8F9 and #FBE5FF. For text on top, black gives the higher contrast.
Can you use white text on blanchedalmond?
White text on blanchedalmond has a contrast ratio of 1.16:1, which fails AA even for large text under WCAG 2.2. Black text reaches 18.01:1 and passes both AA and AAA. In APCA terms that is Lc −9.3 for white and Lc 95.7 for black.
What is the RGB value of blanchedalmond?
BlanchedAlmond is rgb(255, 235, 205): red 255, green 235 and blue 205 on the 0 to 255 scale, or 100.0%, 92.2% and 80.4%. As a decimal integer it is 16772045.

Last reviewed by Arielton Oberek.