Very Pale Yellow
HEX: #FFFFBF | Modern Palette
Color Specifications
#FFFFBF
255, 255, 191
60°, 25% ,100%
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
Color Palettes
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
Accessibility Simulation
#FFFFBF
#FFFFBF
#FFF8F8
#FBFBFB
Frequently Asked Questions
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);
}