Titanium Yellow
HEX: #EEE600 | Modern Palette
Color Specifications
#EEE600
238, 230, 0
58°, 100% ,46%
0, 3, 100, 7
About Titanium Yellow
Titanium Yellow (#EEE600) is a color with RGB(238, 230, 0) and HSL(58°, 100%, 46.7%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0008EE, which creates strong contrast. Its triadic palette includes #00EEE6 and #E600EE. The name comes from Titanium Yellow (English).
- HEX: #EEE600
- RGB: 238, 230, 0
- HSL: 58°, 100%, 46.7%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0008EE
- Triadic colors: #00EEE6, #E600EE
- The name comes from Titanium Yellow (English).
Live Components
Color Palettes
Titanium Yellow #EEE600 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
Titanium Yellow #EEE600 pairs with #0008EE as its complementary color, and #00EEE6 and #E600EE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Titanium dioxide (TiO2) is a naturally occurring oxide of titanium. While primarily known for its use as a white pigment (titanium white), it can be combined with other elements or processed in specific ways to create a range of colors, including yellows. 'Titanium Yellow' specifically refers to a pigment where titanium dioxide is often combined with nickel and antimony (Nickel Antimony Titanium Yellow Rutile) to achieve a stable, bright yellow. This pigment offers excellent lightfastness, weather resistance, and opacity, making it valuable in paints, plastics, and ceramics. Its rise in popularity coincided with the broader industrial adoption of titanium pigments as alternatives to more toxic or less stable traditional pigments.
First Recorded Use
The development and commercialization of titanium dioxide pigments began in the early 20th century, with various yellow shades appearing as part of the broader range of titanium-based colors.
Cultural Associations
In art, Titanium Yellow provides a modern, stable yellow option for artists. In industrial design and consumer products, its durability and vibrant hue make it a popular choice for plastics, coatings, and textiles where color retention and performance are critical. It is often associated with bright, clean, and modern aesthetics due to its purity of color and excellent performance characteristics.
Code Snippets
/* Background */
.element {
background-color: #EEE600;
}
/* Text */
.element {
color: #EEE600;
}
/* Border */
.element {
border: 1px solid #EEE600;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EEE600,
#0008EE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EEE600,
#0008EE
);
}
// SCSS variable
$titanium-yellow: #EEE600;
// With RGB channels (useful for rgba() usage)
$titanium-yellow-r: 238;
$titanium-yellow-g: 230;
$titanium-yellow-b: 0;
// Usage
.element {
background-color: $titanium-yellow;
color: rgba($titanium-yellow-r, $titanium-yellow-g, $titanium-yellow-b, 0.8);
}