Thistle
HEX: #D8BFD8 | Modern Palette
Color Specifications
#D8BFD8
216, 191, 216
300°, 24% ,79%
0, 12, 0, 15
About Thistle
Thistle (#D8BFD8) is a color with RGB(216, 191, 216) and HSL(300°, 24.3%, 79.8%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Border. Its complementary color is #BFD8BF, which creates strong contrast. Its triadic palette includes #D8D8BF and #BFD8D8. The name comes from Thistle (English).
- HEX: #D8BFD8
- RGB: 216, 191, 216
- HSL: 300°, 24.3%, 79.8%
- Style: Pastel, Warm
- Use case: Text, Background, Border
- Complementary color: #BFD8BF
- Triadic colors: #D8D8BF, #BFD8D8
- The name comes from Thistle (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 #D8BFD8 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C7C7D7
#C2C2D8
#D5C2C2
#C7C7C7
Frequently Asked Questions
Name, History & Etymology
History
The thistle, a prickly flowering plant, is the national emblem of Scotland, symbolizing resilience and defiance. Its flowers typically range from pale lilac to reddish-purple, inspiring this specific color designation. The adoption of 'Thistle' as a standardized color name reflects a broader trend in the late 19th century to name colors after natural objects, particularly flowers, to provide more evocative and precise descriptions.
First Recorded Use
The color name 'Thistle' first appeared in English as a color term in 1892, specifically in the publication 'A Dictionary of Color' by Robert Ridgway.
Cultural Associations
In Scottish culture, the thistle is a potent symbol, often associated with bravery and protection. The color 'Thistle' evokes a sense of natural beauty and a subtle, muted elegance, distinct from more vibrant purples. Its use in design often suggests a connection to nature or a soft, understated aesthetic.
Code Snippets
/* Background */
.element {
background-color: #D8BFD8;
}
/* Text */
.element {
color: #D8BFD8;
}
/* Border */
.element {
border: 1px solid #D8BFD8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D8BFD8,
#BFD8BF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D8BFD8,
#BFD8BF
);
}
// SCSS variable
$thistle: #D8BFD8;
// With RGB channels (useful for rgba() usage)
$thistle-r: 216;
$thistle-g: 191;
$thistle-b: 216;
// Usage
.element {
background-color: $thistle;
color: rgba($thistle-r, $thistle-g, $thistle-b, 0.8);
}