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