Turkish Rose
HEX: #B57281 | Modern Palette
Color Specifications
#B57281
181, 114, 129
346°, 31% ,57%
0, 37, 29, 29
About Turkish Rose
Turkish Rose (#B57281) is a color with RGB(181, 114, 129) and HSL(346.6°, 31.2%, 57.8%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #72B5A6, which creates strong contrast. Its triadic palette includes #81B572 and #7281B5. The name comes from Turkish Rose (English).
- HEX: #B57281
- RGB: 181, 114, 129
- HSL: 346.6°, 31.2%, 57.8%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #72B5A6
- Triadic colors: #81B572, #7281B5
- The name comes from Turkish Rose (English).
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 #B57281 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Turkish Rose' likely emerged from the broader fascination with 'Oriental' aesthetics and goods in Europe and America during the late 19th and early 20th centuries. It may have been inspired by the colors found in Turkish rugs, textiles, or the specific hue of roses cultivated in Turkey. The name served to evoke a sense of exoticism and luxury associated with Turkish craftsmanship. Its usage was primarily in fashion, interior design, and cosmetics.
First Recorded Use
The color name 'Turkish Rose' appears in color dictionaries and textile references from the early 20th century, often alongside other 'Turkish' named colors.
Cultural Associations
The 'Turkish' prefix in color names often denoted a perceived richness, warmth, or exotic quality, drawing on associations with Ottoman art and culture. This naming convention was part of a wider trend of using geographical or cultural descriptors for colors to imbue them with specific connotations. It reflects a period when non-Western cultures were often romanticized and their aesthetics appropriated in Western markets.
Code Snippets
/* Background */
.element {
background-color: #B57281;
}
/* Text */
.element {
color: #B57281;
}
/* Border */
.element {
border: 1px solid #B57281;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B57281,
#72B5A6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B57281,
#72B5A6
);
}
// SCSS variable
$turkish-rose: #B57281;
// With RGB channels (useful for rgba() usage)
$turkish-rose-r: 181;
$turkish-rose-g: 114;
$turkish-rose-b: 129;
// Usage
.element {
background-color: $turkish-rose;
color: rgba($turkish-rose-r, $turkish-rose-g, $turkish-rose-b, 0.8);
}