Citrine
HEX: #E4D00A | Modern Palette
Color Specifications
#E4D00A
228, 208, 10
54°, 91% ,46%
0, 9, 96, 11
About Citrine
Citrine (#E4D00A) is a color with RGB(228, 208, 10) and HSL(54.5°, 91.6%, 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 #0A1EE4, which creates strong contrast. Its triadic palette includes #0AE4D0 and #D00AE4. The name comes from citrin (French).
- HEX: #E4D00A
- RGB: 228, 208, 10
- HSL: 54.5°, 91.6%, 46.7%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0A1EE4
- Triadic colors: #0AE4D0, #D00AE4
- The name comes from citrin (French).
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 #E4D00A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Citrine is a variety of quartz, and its color ranges from pale yellow to golden brown. Historically, it has been confused with topaz due to similar coloration. Ancient Romans were known to use citrine, and it was particularly popular in the 19th century for jewelry. Its name is derived from the Old French word 'citrin' meaning 'lemon-colored', referring to its typical yellow hue. Brazil is a major source of natural citrine.
First Recorded Use
The term 'citrine' for the gemstone is believed to have been used since at least the 16th century, though the color 'citrin' has older roots.
Cultural Associations
Citrine is often associated with prosperity and abundance, sometimes referred to as the 'merchant's stone' or 'success stone'. It is also believed to bring joy, energy, and creativity. In some cultures, it has been used as a protective amulet. It is one of the birthstones for November.
Code Snippets
/* Background */
.element {
background-color: #E4D00A;
}
/* Text */
.element {
color: #E4D00A;
}
/* Border */
.element {
border: 1px solid #E4D00A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E4D00A,
#0A1EE4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E4D00A,
#0A1EE4
);
}
// SCSS variable
$citrine: #E4D00A;
// With RGB channels (useful for rgba() usage)
$citrine-r: 228;
$citrine-g: 208;
$citrine-b: 10;
// Usage
.element {
background-color: $citrine;
color: rgba($citrine-r, $citrine-g, $citrine-b, 0.8);
}