Very Pale Orange
HEX: #FFDFBF | Modern Palette
Color Specifications
#FFDFBF
255, 223, 191
30°, 25% ,100%
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
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 #FFDFBF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E9E9BE
#E3E3BF
#FFDBDB
#E4E4E4
Frequently Asked Questions
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);
}