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
Flavescent #F7E98E 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
Flavescent #F7E98E pairs with #8E9CF7 as its complementary color, and #8EF7E9 and #E98EF7 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 '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);
}