Jasmine
HEX: #F8DE7E | Modern Palette
Color Specifications
#F8DE7E
248, 222, 126
47°, 89% ,73%
0, 10, 49, 3
About Jasmine
Jasmine (#F8DE7E) is a color with RGB(248, 222, 126) and HSL(47.2°, 89.7%, 73.3%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #7E98F8, which creates strong contrast. Its triadic palette includes #7EF8DE and #DE7EF8. The name comes from Yasamin (یاسمن) (Persian).
- HEX: #F8DE7E
- RGB: 248, 222, 126
- HSL: 47.2°, 89.7%, 73.3%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #7E98F8
- Triadic colors: #7EF8DE, #DE7EF8
- The name comes from Yasamin (یاسمن) (Persian).
Live Components
Color Palettes
Jasmine #F8DE7E 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
Jasmine #F8DE7E pairs with #7E98F8 as its complementary color, and #7EF8DE and #DE7EF8 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 name Jasmine is derived from the Persian word 'Yasamin,' which refers to the jasmine flower. This fragrant flower is native to tropical and warm temperate regions of Eurasia, Australasia, and Oceania. It has been cultivated for its beauty and scent for millennia, particularly in Persia, India, and China. The name traveled to Europe, notably France, where it became 'Jasmine' and gained popularity as a given name, especially in English-speaking countries from the 19th century onwards. Its association with the beautiful and fragrant flower has contributed to its enduring appeal.
First Recorded Use
Uncertain, but the flower has been cultivated for thousands of years, and the name likely emerged with its cultural significance.
Cultural Associations
The jasmine flower holds significant cultural importance in many parts of the world. In India, it is often used in religious ceremonies, garlands, and for hair adornment. It is a symbol of love, beauty, and purity. In some cultures, jasmine tea is a popular beverage, known for its delicate flavor and aroma. The name gained further international recognition and popularity, particularly in Western cultures, after the release of Disney's 'Aladdin' (1992), featuring Princess Jasmine.
Code Snippets
/* Background */
.element {
background-color: #F8DE7E;
}
/* Text */
.element {
color: #F8DE7E;
}
/* Border */
.element {
border: 1px solid #F8DE7E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F8DE7E,
#7E98F8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F8DE7E,
#7E98F8
);
}
// SCSS variable
$jasmine: #F8DE7E;
// With RGB channels (useful for rgba() usage)
$jasmine-r: 248;
$jasmine-g: 222;
$jasmine-b: 126;
// Usage
.element {
background-color: $jasmine;
color: rgba($jasmine-r, $jasmine-g, $jasmine-b, 0.8);
}