Tulip
HEX: #FF878D | Modern Palette
Color Specifications
#FF878D
255, 135, 141
357°, 47% ,100%
0, 47.06, 44.71, 0
About Tulip
Tulip (#FF878D) is a color with RGB(255, 135, 141) and HSL(357°, 47.06%, 100%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #87FFF9, which creates strong contrast. Its triadic palette includes #8DFF87 and #878DFF. The name comes from dulband (Persian).
- HEX: #FF878D
- RGB: 255, 135, 141
- HSL: 357°, 47.06%, 100%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #87FFF9
- Triadic colors: #8DFF87, #878DFF
- The name comes from dulband (Persian).
Live Components
Color Palettes
Tulip #FF878D 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
Tulip #FF878D pairs with #87FFF9 as its complementary color, and #8DFF87 and #878DFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#B5B589
#9A9A8E
#FF8888
#ABABAB
Frequently Asked Questions
Name, History & Etymology
History
Tulips originated in Central Asia and were cultivated in the Ottoman Empire. They were introduced to Europe in the 16th century, becoming immensely popular, particularly in the Netherlands during the 'Tulip Mania' of the 17th century. During this period, tulip bulbs became so valuable that they were traded for exorbitant prices, leading to one of the first recorded speculative bubbles.
First Recorded Use
The word 'tulip' entered English via French (tulipe) and Latin (tulipa), derived from the Ottoman Turkish 'tülbent', which itself came from the Persian 'dulband'. This refers to the flower's resemblance to a turban.
Cultural Associations
Tulips are a national symbol of Turkey and Iran. In the Netherlands, they are iconic and a major part of the country's tourism and economy. They often symbolize perfect love, fame, and a declaration of love. Different colors can carry specific meanings: red for true love, yellow for cheerful thoughts, and purple for royalty.
Code Snippets
/* Background */
.element {
background-color: #FF878D;
}
/* Text */
.element {
color: #FF878D;
}
/* Border */
.element {
border: 1px solid #FF878D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF878D,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF878D,
#FFFFFF
);
}
// SCSS variable
$tulip: #FF878D;
// With RGB channels (useful for rgba() usage)
$tulip-r: 255;
$tulip-g: 135;
$tulip-b: 141;
// Usage
.element {
background-color: $tulip;
color: rgba($tulip-r, $tulip-g, $tulip-b, 0.8);
}