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