Jonquil
HEX: #F4CA16 | Modern Palette
Color Specifications
#F4CA16
244, 202, 22
48°, 90% ,95%
0, 17.21, 90.98, 4.31
About Jonquil
Jonquil (#F4CA16) is a color with RGB(244, 202, 22) and HSL(48.65°, 90.98%, 95.69%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #1640F4, which creates strong contrast. Its triadic palette includes #16F4CA and #CA16F4. The name comes from juncus (Latin) -> junquillo (Spanish) -> jonquille (French) (Latin (via French and Spanish)).
- HEX: #F4CA16
- RGB: 244, 202, 22
- HSL: 48.65°, 90.98%, 95.69%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #1640F4
- Triadic colors: #16F4CA, #CA16F4
- The name comes from juncus (Latin) -> junquillo (Spanish) -> jonquille (French) (Latin (via French and Spanish)).
Live Components
Color Palettes
Jonquil #F4CA16 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 #F4CA16 pairs with #1640F4 as its complementary color, and #16F4CA and #CA16F4 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' ultimately derives from the Latin 'juncus,' meaning 'rush' or 'reed,' due to the plant's slender, rush-like leaves. This Latin root evolved into 'junquillo' in Spanish, a diminutive form. From Spanish, it was adopted into French as 'jonquille.' English then borrowed the word directly from French in the early 17th century to refer specifically to a species of narcissus (Narcissus jonquilla) known for its fragrant, small, yellow flowers, often in clusters.
First Recorded Use
1629 (English)
Cultural Associations
Jonquils are a type of narcissus and are often associated with spring, rebirth, and new beginnings. In the language of flowers, jonquils can symbolize desire, sympathy, or the return of affection. Their bright yellow color also links them to happiness and cheerfulness. They are popular ornamental plants in gardens.
Code Snippets
/* Background */
.element {
background-color: #F4CA16;
}
/* Text */
.element {
color: #F4CA16;
}
/* Border */
.element {
border: 1px solid #F4CA16;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F4CA16,
#EAEEFE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F4CA16,
#EAEEFE
);
}
// SCSS variable
$jonquil: #F4CA16;
// With RGB channels (useful for rgba() usage)
$jonquil-r: 244;
$jonquil-g: 202;
$jonquil-b: 22;
// Usage
.element {
background-color: $jonquil;
color: rgba($jonquil-r, $jonquil-g, $jonquil-b, 0.8);
}