Icterine
HEX: #FCF75E | Modern Palette
Color Specifications
#FCF75E
252, 247, 94
58°, 96% ,67%
0, 2, 63, 1
About Icterine
Icterine (#FCF75E) is a color with RGB(252, 247, 94) and HSL(58.1°, 96.3%, 67.8%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #5E63FC, which creates strong contrast. Its triadic palette includes #5EFCF7 and #F75EFC. The name comes from īcterus (Latin).
- HEX: #FCF75E
- RGB: 252, 247, 94
- HSL: 58.1°, 96.3%, 67.8%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #5E63FC
- Triadic colors: #5EFCF7, #F75EFC
- The name comes from īcterus (Latin).
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 #FCF75E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'icterine' derives from the Latin 'īcterus,' which referred both to the medical condition of jaundice (characterized by yellowing of the skin) and to a specific yellowish bird, often identified as the golden oriole, whose color was thought to resemble that of a jaundiced person. The English adjective 'icterine' emerged in the late 18th century, primarily in ornithological contexts, to describe birds or plumage that are yellowish, resembling the color of the oriole or the hue associated with jaundice. Its use is quite specific, almost exclusively found in scientific or highly descriptive contexts, particularly in biology and ornithology.
First Recorded Use
1796
Cultural Associations
While 'icterine' is not a widely used word in everyday language, its root 'icterus' has a long history in medicine. The association of a specific bird with a medical condition due to shared color highlights how ancient cultures observed and categorized the natural world. In ornithology, 'icterine' precisely describes a color, helping to differentiate species. For example, the 'Icterine Warbler' (Hippolais icterina) is named for its yellowish plumage.
Code Snippets
/* Background */
.element {
background-color: #FCF75E;
}
/* Text */
.element {
color: #FCF75E;
}
/* Border */
.element {
border: 1px solid #FCF75E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FCF75E,
#5E63FC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FCF75E,
#5E63FC
);
}
// SCSS variable
$icterine: #FCF75E;
// With RGB channels (useful for rgba() usage)
$icterine-r: 252;
$icterine-g: 247;
$icterine-b: 94;
// Usage
.element {
background-color: $icterine;
color: rgba($icterine-r, $icterine-g, $icterine-b, 0.8);
}