Apricot
HEX: #FBCEB1 | Modern Palette
Color Specifications
#FBCEB1
251, 206, 177
23°, 90% ,83%
0, 18, 29, 2
About Apricot
Apricot (#FBCEB1) is a color with RGB(251, 206, 177) and HSL(23.5°, 90.2%, 83.9%). 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 #B1DEFB, which creates strong contrast. Its triadic palette includes #B1FBCE and #CEB1FB. The name comes from praecocia (Latin), al-birquq (Arabic), abricoc (Catalan), albaricoque (Spanish) (Latin (via Arabic and Catalan/Spanish)).
- HEX: #FBCEB1
- RGB: 251, 206, 177
- HSL: 23.5°, 90.2%, 83.9%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #B1DEFB
- Triadic colors: #B1FBCE, #CEB1FB
- The name comes from praecocia (Latin), al-birquq (Arabic), abricoc (Catalan), albaricoque (Spanish) (Latin (via Arabic and Catalan/Spanish)).
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 #FBCEB1 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'apricot' has a fascinating etymology, tracing back to Latin 'praecocia' meaning 'early-ripening' (referring to a type of peach). This word was adopted into Byzantine Greek as 'prekokkion' and then into Arabic as 'al-birquq'. From Arabic, it entered Spanish and Catalan as 'albaricoque' and 'abricoc' respectively. English likely borrowed the word from either French ('abricot') or directly from Spanish/Catalan in the 16th century. The initial 'a' in English was often mistaken for the indefinite article 'a', leading to the dropping of the 'al-' prefix over time.
First Recorded Use
1530s (English)
Cultural Associations
Apricots are native to parts of Asia, particularly China, and have been cultivated for thousands of years. They were introduced to the Middle East and Europe via the Silk Road. In many cultures, apricots symbolize good fortune, fertility, and health. They are a popular fruit in Mediterranean, Middle Eastern, and Central Asian cuisines, used in both sweet and savory dishes, jams, and dried forms. The color 'apricot' (#fbceb1) evokes the soft, warm, yellowish-orange hue of the fruit.
Code Snippets
/* Background */
.element {
background-color: #FBCEB1;
}
/* Text */
.element {
color: #FBCEB1;
}
/* Border */
.element {
border: 1px solid #FBCEB1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FBCEB1,
#B1DEFB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FBCEB1,
#B1DEFB
);
}
// SCSS variable
$apricot: #FBCEB1;
// With RGB channels (useful for rgba() usage)
$apricot-r: 251;
$apricot-g: 206;
$apricot-b: 177;
// Usage
.element {
background-color: $apricot;
color: rgba($apricot-r, $apricot-g, $apricot-b, 0.8);
}