Dandelion
HEX: #F0E130 | Modern Palette
Color Specifications
#F0E130
240, 225, 48
55°, 86% ,56%
0, 6, 80, 6
About Dandelion
Dandelion (#F0E130) is a color with RGB(240, 225, 48) and HSL(55.3°, 86.5%, 56.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 #303FF0, which creates strong contrast. Its triadic palette includes #30F0E1 and #E130F0. The name comes from dent de lion (French).
- HEX: #F0E130
- RGB: 240, 225, 48
- HSL: 55.3°, 86.5%, 56.5%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #303FF0
- Triadic colors: #30F0E1, #E130F0
- The name comes from dent de lion (French).
Live Components
Color Palettes
Dandelion #F0E130 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
Dandelion #F0E130 pairs with #303FF0 as its complementary color, and #30F0E1 and #E130F0 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 English word 'dandelion' is a direct borrowing from the Old French 'dent de lion', which literally means 'lion's tooth'. This name is believed to refer to the plant's sharply toothed leaves, which resemble the teeth of a lion. The plant has been known and used for centuries across various cultures for its medicinal properties and as a food source. Its distinctive yellow flower and fluffy seed head are widely recognized.
First Recorded Use
15th century
Cultural Associations
Dandelions are often seen as weeds in modern Western gardening, but they have a rich history of culinary and medicinal use. In traditional medicine, particularly European and Chinese, dandelions have been used as a diuretic, for liver ailments, and as a general tonic. Young dandelion greens are edible and can be used in salads, while the flowers can be used to make wine or jelly. The plant is also a significant early nectar source for bees. Culturally, blowing the seeds off a dandelion head is a common childhood pastime, often associated with making wishes.
Code Snippets
/* Background */
.element {
background-color: #F0E130;
}
/* Text */
.element {
color: #F0E130;
}
/* Border */
.element {
border: 1px solid #F0E130;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F0E130,
#303FF0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F0E130,
#303FF0
);
}
// SCSS variable
$dandelion: #F0E130;
// With RGB channels (useful for rgba() usage)
$dandelion-r: 240;
$dandelion-g: 225;
$dandelion-b: 48;
// Usage
.element {
background-color: $dandelion;
color: rgba($dandelion-r, $dandelion-g, $dandelion-b, 0.8);
}