Citron
HEX: #9FA91F | Modern Palette
Color Specifications
#9FA91F
159, 169, 31
64°, 81% ,66%
5.92, 0, 81.66, 33.73
About Citron
Citron (#9FA91F) is a color with RGB(159, 169, 31) and HSL(64.35°, 81.66%, 66.27%). 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 #291FA9, which creates strong contrast. Its triadic palette includes #1F9FA9 and #A91F9F. The name comes from citron (French).
- HEX: #9FA91F
- RGB: 159, 169, 31
- HSL: 64.35°, 81.66%, 66.27%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #291FA9
- Triadic colors: #1F9FA9, #A91F9F
- The name comes from citron (French).
Live Components
Color Palettes
Citron #9FA91F 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
Citron #9FA91F pairs with #291FA9 as its complementary color, and #1F9FA9 and #A91F9F in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word "citron" in French directly translates to "lemon" in English. The fruit itself, Citrus medica, is one of the original citrus fruits from which many other citrus varieties (like lemons and oranges) are hybridized. The citron fruit has a very thick rind and less juice than a typical lemon, and it was one of the first citrus fruits to reach Europe from Asia. The English word "citron" (referring to the specific fruit Citrus medica) also derives from the French, and ultimately from Latin 'citrus'. The color 'citron' (#9fa91f) is a yellowish-green, reminiscent of the rind of a citron fruit or a very ripe lemon.
First Recorded Use
14th Century
Cultural Associations
The citron fruit (etrog in Hebrew) holds significant religious importance in Judaism, being one of the Four Species used during the Sukkot holiday. In general culture, the color citron is often associated with freshness, nature, and sometimes a vibrant, zesty quality. It's a less common color name than 'lemon yellow' but evokes a similar natural, fruity association.
Code Snippets
/* Background */
.element {
background-color: #9FA91F;
}
/* Text */
.element {
color: #9FA91F;
}
/* Border */
.element {
border: 1px solid #9FA91F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9FA91F,
#6D63EF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9FA91F,
#6D63EF
);
}
// SCSS variable
$citron: #9FA91F;
// With RGB channels (useful for rgba() usage)
$citron-r: 159;
$citron-g: 169;
$citron-b: 31;
// Usage
.element {
background-color: $citron;
color: rgba($citron-r, $citron-g, $citron-b, 0.8);
}