Flavescent
HEX: #F7E98E | Modern Palette
Color Specifications
#F7E98E
247, 233, 142
52°, 86% ,76%
0, 6, 43, 3
About Flavescent
Flavescent (#F7E98E) is a color with RGB(247, 233, 142) and HSL(52°, 86.8%, 76.3%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #8E9CF7, which creates strong contrast. Its triadic palette includes #8EF7E9 and #E98EF7. The name comes from flavescere (Latin).
- HEX: #F7E98E
- RGB: 247, 233, 142
- HSL: 52°, 86.8%, 76.3%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #8E9CF7
- Triadic colors: #8EF7E9, #E98EF7
- The name comes from flavescere (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 #F7E98E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'flavescent' derives from the Latin 'flavescere,' which is itself from 'flavus' meaning 'yellow' or 'golden.' It entered English in the mid-17th century, primarily as a botanical or scientific term to describe something turning or becoming yellowish. It has always been a relatively uncommon word, often found in more technical or descriptive contexts rather than everyday conversation.
First Recorded Use
1650s
Cultural Associations
While not a common word in everyday speech, 'flavescent' evokes a very specific shade of yellow, often associated with natural processes like leaves changing color in autumn, the ripening of certain fruits, or the aging of paper. It carries a slightly more formal or academic tone than simpler terms like 'yellowish.' The color #f7e98e is a pale, somewhat muted yellow, fitting the 'becoming yellow' aspect of thevescent.
Code Snippets
/* Background */
.element {
background-color: #F7E98E;
}
/* Text */
.element {
color: #F7E98E;
}
/* Border */
.element {
border: 1px solid #F7E98E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F7E98E,
#8E9CF7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F7E98E,
#8E9CF7
);
}
// SCSS variable
$flavescent: #F7E98E;
// With RGB channels (useful for rgba() usage)
$flavescent-r: 247;
$flavescent-g: 233;
$flavescent-b: 142;
// Usage
.element {
background-color: $flavescent;
color: rgba($flavescent-r, $flavescent-g, $flavescent-b, 0.8);
}