Chrome Yellow
HEX: #FFA700 | Modern Palette
Color Specifications
#FFA700
255, 167, 0
39°, 100% ,50%
0, 35, 100, 0
About Chrome Yellow
Chrome Yellow (#FFA700) is a color with RGB(255, 167, 0) and HSL(39.3°, 100%, 50%). 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 #0058FF, which creates strong contrast. Its triadic palette includes #00FFA7 and #A700FF. The name comes from Chrome Yellow (English).
- HEX: #FFA700
- RGB: 255, 167, 0
- HSL: 39.3°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0058FF
- Triadic colors: #00FFA7, #A700FF
- The name comes from Chrome Yellow (English).
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 #FFA700 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Chrome Yellow was first synthesized in 1797 by French chemist Louis Nicolas Vauquelin. Its vibrant, opaque yellow color made it an instant success in painting, particularly during the Romantic and Impressionist periods. It was also widely used in industrial applications like paints, ceramics, and printing inks. However, due to its lead content, it is highly toxic and has largely been replaced by safer, less toxic alternatives (such as cadmium yellows or organic pigments) in most modern applications, especially in art materials. Its use in consumer products is now heavily restricted or banned in many countries.
First Recorded Use
The pigment was discovered by Louis Nicolas Vauquelin in 1797 and quickly adopted for artistic and industrial use. The term 'Chrome Yellow' became common shortly thereafter.
Cultural Associations
Beyond its use as a pigment, 'Chrome Yellow' is also the title of Aldous Huxley's first novel, published in 1921. The novel is a satirical look at the intellectual and artistic circles of post-World War I England, set at a country estate named 'Crome Yellow'. The color itself evokes brightness, warmth, and a certain historical aesthetic, often associated with older paintings and industrial machinery.
Code Snippets
/* Background */
.element {
background-color: #FFA700;
}
/* Text */
.element {
color: #FFA700;
}
/* Border */
.element {
border: 1px solid #FFA700;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA700,
#0058FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA700,
#0058FF
);
}
// SCSS variable
$chrome-yellow: #FFA700;
// With RGB channels (useful for rgba() usage)
$chrome-yellow-r: 255;
$chrome-yellow-g: 167;
$chrome-yellow-b: 0;
// Usage
.element {
background-color: $chrome-yellow;
color: rgba($chrome-yellow-r, $chrome-yellow-g, $chrome-yellow-b, 0.8);
}