Light Apricot
HEX: #FDD5B1 | Modern Palette
Color Specifications
#FDD5B1
253, 213, 177
28°, 95% ,84%
0, 16, 30, 1
About Light Apricot
Light Apricot (#FDD5B1) is a color with RGB(253, 213, 177) and HSL(28.4°, 95%, 84.3%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #B1D9FD, which creates strong contrast. Its triadic palette includes #B1FDD5 and #D5B1FD. The name comes from Light Apricot (English).
- HEX: #FDD5B1
- RGB: 253, 213, 177
- HSL: 28.4°, 95%, 84.3%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #B1D9FD
- Triadic colors: #B1FDD5, #D5B1FD
- The name comes from Light Apricot (English).
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 #FDD5B1 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'apricot' itself derives its name directly from the fruit, which has been cultivated for thousands of years. The word 'apricot' entered English in the 16th century, ultimately from Latin 'praecocia' (early-ripening fruit). As a color descriptor, 'apricot' became popular to describe a soft, warm orange-pink hue. The addition of 'light' serves to specify a less saturated or paler version of this established color, often seen in fashion, interior design, and cosmetics.
First Recorded Use
While 'apricot' as a color has been used for much longer, the specific modifier 'light' to denote a paler version became more common with the advent of standardized color systems (like web colors, paint swatches, and textile dyes) in the late 20th century to differentiate shades precisely.
Cultural Associations
Light apricot is often associated with warmth, softness, and natural beauty. It can evoke feelings of comfort, gentleness, and a subtle elegance. In fashion, it's considered a flattering, versatile pastel. In home decor, it can create inviting and serene spaces. It's less vibrant than a true orange, making it more subdued and sophisticated.
Code Snippets
/* Background */
.element {
background-color: #FDD5B1;
}
/* Text */
.element {
color: #FDD5B1;
}
/* Border */
.element {
border: 1px solid #FDD5B1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FDD5B1,
#B1D9FD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FDD5B1,
#B1D9FD
);
}
// SCSS variable
$light-apricot: #FDD5B1;
// With RGB channels (useful for rgba() usage)
$light-apricot-r: 253;
$light-apricot-g: 213;
$light-apricot-b: 177;
// Usage
.element {
background-color: $light-apricot;
color: rgba($light-apricot-r, $light-apricot-g, $light-apricot-b, 0.8);
}