Jonquil
HEX: #FADA5E | Modern Palette
Color Specifications
#FADA5E
250, 218, 94
47°, 94% ,67%
0, 13, 62, 2
About Jonquil
Jonquil (#FADA5E) is a color with RGB(250, 218, 94) and HSL(47.7°, 94%, 67.5%). 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 #5E7EFA, which creates strong contrast. Its triadic palette includes #5EFADA and #DA5EFA. The name comes from junquillo (Spanish).
- HEX: #FADA5E
- RGB: 250, 218, 94
- HSL: 47.7°, 94%, 67.5%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #5E7EFA
- Triadic colors: #5EFADA, #DA5EFA
- The name comes from junquillo (Spanish).
Live Components
Color Palettes
Jonquil #FADA5E 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
Jonquil #FADA5E pairs with #5E7EFA as its complementary color, and #5EFADA and #DA5EFA 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 'jonquil' entered English from French 'jonquille', which itself came from Spanish 'junquillo'. 'Junquillo' is a diminutive of 'junco', meaning 'rush'. This refers to the rush-like leaves of the plant. The plant, a species of narcissus (Narcissus jonquilla), is known for its fragrant yellow flowers. The color 'jonquil' (#fada5e) is a pale to moderate yellow, specifically referencing the color of these flowers.
First Recorded Use
c. 1629
Cultural Associations
Jonquils are often associated with spring and new beginnings due to their early blooming. In the language of flowers, jonquils can symbolize desire, sympathy, or the return of affection. They are less common in general symbolism than other narcissus varieties (like daffodils) but carry similar connotations of cheerfulness and renewal. The color itself evokes a soft, warm, and gentle feeling, often used in spring fashion and decor.
Code Snippets
/* Background */
.element {
background-color: #FADA5E;
}
/* Text */
.element {
color: #FADA5E;
}
/* Border */
.element {
border: 1px solid #FADA5E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FADA5E,
#5E7EFA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FADA5E,
#5E7EFA
);
}
// SCSS variable
$jonquil: #FADA5E;
// With RGB channels (useful for rgba() usage)
$jonquil-r: 250;
$jonquil-g: 218;
$jonquil-b: 94;
// Usage
.element {
background-color: $jonquil;
color: rgba($jonquil-r, $jonquil-g, $jonquil-b, 0.8);
}