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