Almond
HEX: #EFDECD | Modern Palette
Color Specifications
#EFDECD
239, 222, 205
30°, 51% ,87%
0, 7, 14, 6
About Almond
Almond (#EFDECD) is a color with RGB(239, 222, 205) and HSL(30°, 51.5%, 87.1%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #CDDEEF, which creates strong contrast. Its triadic palette includes #CDEFDE and #DECDEF. The name comes from amygdala (Latin).
- HEX: #EFDECD
- RGB: 239, 222, 205
- HSL: 30°, 51.5%, 87.1%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #CDDEEF
- Triadic colors: #CDEFDE, #DECDEF
- The name comes from amygdala (Latin).
Live Components
Color Palettes
Almond #EFDECD is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Almond #EFDECD pairs with #CDDEEF as its complementary color, and #CDEFDE and #DECDEF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#E3E3CD
#E0E0CD
#F1DCDC
#E1E1E1
Frequently Asked Questions
Name, History & Etymology
History
The word 'almond' itself has a long history, evolving from Greek 'amygdalē' through Latin 'amygdala' and Old French 'almande' before entering English. As a color descriptor, 'almond' refers to the characteristic light, warm beige or off-white color associated with the nut. Its use as a color name is descriptive, drawing a direct comparison to the natural object. It is a relatively common and straightforward color term.
First Recorded Use
The color name 'Almond' likely came into use in the 18th century, describing the pale, creamy brown hue of the almond shell or kernel.
Cultural Associations
The color 'Almond' evokes natural, earthy tones, often associated with warmth, comfort, and simplicity. It is frequently used in interior design, fashion, and cosmetics for its neutral and versatile qualities. The association with the edible nut also lends it a sense of natural goodness and wholesomeness.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #EFDECD;
}
/* Text */
.element {
color: #EFDECD;
}
/* Border */
.element {
border: 1px solid #EFDECD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EFDECD,
#CDDEEF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EFDECD,
#CDDEEF
);
}
// SCSS variable
$almond: #EFDECD;
// With RGB channels (useful for rgba() usage)
$almond-r: 239;
$almond-g: 222;
$almond-b: 205;
// Usage
.element {
background-color: $almond;
color: rgba($almond-r, $almond-g, $almond-b, 0.8);
}