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
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 #FADA5E from deepest shade to lightest tint.
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);
}