Platinum
HEX: #E5E4E2 | Modern Palette
Color Specifications
#E5E4E2
229, 228, 226
40°, 5% ,89%
0, 0, 1, 10
About Platinum
Platinum (#E5E4E2) is a color with RGB(229, 228, 226) and HSL(40°, 5.5%, 89.2%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Print. Its complementary color is #E2E3E5, which creates strong contrast. Its triadic palette includes #E2E5E4 and #E4E2E5. The name comes from platina (Spanish).
- HEX: #E5E4E2
- RGB: 229, 228, 226
- HSL: 40°, 5.5%, 89.2%
- Mood: Minimal
- Style: Monochrome, Pastel
- Use case: Text, Background, Print
- Complementary color: #E2E3E5
- Triadic colors: #E2E5E4, #E4E2E5
- The name comes from platina (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 #E5E4E2 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E4E4E2
#E4E4E2
#E5E4E4
#E4E4E4
Frequently Asked Questions
Name, History & Etymology
History
Platinum was first encountered by Europeans in the Americas, particularly in what is now Colombia and Ecuador, where pre-Columbian cultures used it. Spanish conquistadors observed it and initially dismissed it as an impurity in silver ore, calling it 'platina' (a diminutive of 'plata' meaning silver). Its unique properties, including its high melting point and resistance to corrosion, made it difficult to work with early on. It wasn't until the mid-18th century that scientists like Antonio de Ulloa and Charles Wood brought samples to Europe, leading to its recognition as a distinct element. Its name 'platinum' was adopted into English from the Spanish 'platina'.
First Recorded Use
1741 (English)
Cultural Associations
Platinum is highly valued for its rarity, density, and resistance to tarnish, making it a prestigious material in jewelry (especially for engagement rings), coinage, and luxury goods. It is also crucial in industrial applications, particularly in catalytic converters for automobiles, laboratory equipment, and medical devices. Its association with 'platinum records' in the music industry signifies sales of over one million units, further cementing its image as a symbol of excellence and high achievement.
Code Snippets
/* Background */
.element {
background-color: #E5E4E2;
}
/* Text */
.element {
color: #E5E4E2;
}
/* Border */
.element {
border: 1px solid #E5E4E2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E5E4E2,
#E2E3E5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E5E4E2,
#E2E3E5
);
}
// SCSS variable
$platinum: #E5E4E2;
// With RGB channels (useful for rgba() usage)
$platinum-r: 229;
$platinum-g: 228;
$platinum-b: 226;
// Usage
.element {
background-color: $platinum;
color: rgba($platinum-r, $platinum-g, $platinum-b, 0.8);
}