Very Pale Orange

HEX: #FFDFBF | Modern Palette

On White
1.27:1
FAIL
On Black
16.56:1
PASS

Color Specifications

HEX
#FFDFBF
RGB
255, 223, 191
HSL
30°, 25% ,100%
CMYK
0, 12.55, 25.1, 0

About Very Pale Orange

Very Pale Orange (#FFDFBF) is a color with RGB(255, 223, 191) and HSL(30°, 25.1%, 100%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BFDFFF, which creates strong contrast. Its triadic palette includes #BFFFDF and #DFBFFF.

  • HEX: #FFDFBF
  • RGB: 255, 223, 191
  • HSL: 30°, 25.1%, 100%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #BFDFFF
  • Triadic colors: #BFFFDF, #DFBFFF

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #FFDFBF from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #E9E9BE
Protanopia #E3E3BF
Tritanopia #FFDBDB
Achromatopsia #E4E4E4

Frequently Asked Questions

Very Pale Orange (#FFDFBF) is a color with RGB(255, 223, 191) and HSL(30°, 25.1%, 100%).

#FFDFBF pairs strongly with #BFDFFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FFDFBF is suitable for Text, Background, Print and works well with Pastel, Warm styles.

Similar Named Colors

Peach Puff #FFDAB9 ΔE 1.83
Bisque #FFE4C4 ΔE 2.06
Light Apricot #FDD5B1 ΔE 3.05
Lumber #FFE4CD ΔE 3.12

Code Snippets

/* Background */
.element {
    background-color: #FFDFBF;
}

/* Text */
.element {
    color: #FFDFBF;
}

/* Border */
.element {
    border: 1px solid #FFDFBF;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FFDFBF,
        #FFFFFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFDFBF,
        #FFFFFF
    );
}

// SCSS variable
$very-pale-orange: #FFDFBF;

// With RGB channels (useful for rgba() usage)
$very-pale-orange-r: 255;
$very-pale-orange-g: 223;
$very-pale-orange-b: 191;

// Usage
.element {
    background-color: $very-pale-orange;
    color: rgba($very-pale-orange-r, $very-pale-orange-g, $very-pale-orange-b, 0.8);
}