Very Pale Yellow

HEX: #FFFFBF | Modern Palette

On White
1.03:1
FAIL
On Black
20.31:1
PASS

Color Specifications

HEX
#FFFFBF
RGB
255, 255, 191
HSL
60°, 25% ,100%
CMYK
0, 0, 25.1, 0

About Very Pale Yellow

Very Pale Yellow (#FFFFBF) is a color with RGB(255, 255, 191) and HSL(60°, 25.1%, 100%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BFBFFF, which creates strong contrast. Its triadic palette includes #BFFFFF and #FFBFFF.

  • HEX: #FFFFBF
  • RGB: 255, 255, 191
  • HSL: 60°, 25.1%, 100%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #BFBFFF
  • Triadic colors: #BFFFFF, #FFBFFF

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 #FFFFBF from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #FFFFBF
Protanopia #FFFFBF
Tritanopia #FFF8F8
Achromatopsia #FBFBFB

Frequently Asked Questions

Very Pale Yellow (#FFFFBF) is a color with RGB(255, 255, 191) and HSL(60°, 25.1%, 100%).

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

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

Similar Named Colors

Cream #FFFDD0 ΔE 4.27
Lemon Chiffon #FFFACD ΔE 4.53
Pale Goldenrod #EEE8AA ΔE 4.85
Blond #FAF0BE ΔE 4.97

Code Snippets

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

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

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

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

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

// SCSS variable
$very-pale-yellow: #FFFFBF;

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

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