Bone
HEX: #E3DAC9 | Modern Palette
Color Specifications
#E3DAC9
227, 218, 201
39°, 31% ,83%
0, 4, 11, 11
About Bone
Bone (#E3DAC9) is a color with RGB(227, 218, 201) and HSL(39.2°, 31.7%, 83.9%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #C9D2E3, which creates strong contrast. Its triadic palette includes #C9E3DA and #DAC9E3. The name comes from *bainą (Proto-Germanic).
- HEX: #E3DAC9
- RGB: 227, 218, 201
- HSL: 39.2°, 31.7%, 83.9%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #C9D2E3
- Triadic colors: #C9E3DA, #DAC9E3
- The name comes from *bainą (Proto-Germanic).
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 #E3DAC9 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#DDDDC9
#DBDBC9
#E5D8D8
#DBDBDB
Frequently Asked Questions
Name, History & Etymology
History
The word 'bone' has a long and stable history in the Germanic languages. It derives from Proto-Germanic *bainą, which itself comes from Proto-Indo-European *bʰoyn- (or similar reconstruction) meaning 'bone'. Cognates can be found across Germanic languages, such as 'bein' in Norwegian, Danish, and Swedish, and 'Bein' in German (though in German, 'Bein' primarily means 'leg', with 'Knochen' being the more common word for 'bone'). In Old English, it was 'bān'. The meaning has remained consistent throughout its development in English, referring to the hard, rigid form of connective tissue constituting most of the skeleton of vertebrates.
First Recorded Use
Before 900 AD
Cultural Associations
Bones hold significant cultural meaning across various societies. They are often associated with death, ancestors, and the enduring essence of a being. In many cultures, bones are used in rituals, divination, and as relics. For example, in some indigenous cultures, animal bones are used to create tools, weapons, and decorative items, and are respected as part of the animal's spirit. In Western culture, 'bone' is also used metaphorically in phrases like 'to have a bone to pick' (to have a grievance) or 'to feel it in one's bones' (to have an intuitive feeling). The color 'bone' (#e3dac9) itself evokes a sense of natural, unbleached, and aged material, often associated with antiquity, earthiness, and a subtle warmth.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #E3DAC9;
}
/* Text */
.element {
color: #E3DAC9;
}
/* Border */
.element {
border: 1px solid #E3DAC9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E3DAC9,
#C9D2E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E3DAC9,
#C9D2E3
);
}
// SCSS variable
$bone: #E3DAC9;
// With RGB channels (useful for rgba() usage)
$bone-r: 227;
$bone-g: 218;
$bone-b: 201;
// Usage
.element {
background-color: $bone;
color: rgba($bone-r, $bone-g, $bone-b, 0.8);
}