Thulian Pink
HEX: #DE6FA1 | Modern Palette
Color Specifications
#DE6FA1
222, 111, 161
333°, 62% ,65%
0, 50, 27, 13
About Thulian Pink
Thulian Pink (#DE6FA1) is a color with RGB(222, 111, 161) and HSL(333°, 62.7%, 65.3%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #6FDEAC, which creates strong contrast. Its triadic palette includes #A1DE6F and #6FA1DE. The name comes from Thulian (English).
- HEX: #DE6FA1
- RGB: 222, 111, 161
- HSL: 333°, 62.7%, 65.3%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #6FDEAC
- Triadic colors: #A1DE6F, #6FA1DE
- The name comes from Thulian (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 #DE6FA1 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Thulian Pink' is derived from 'Thulite,' a pink manganese-rich variety of the mineral zoisite. Thulite was first discovered in Norway in 1820, and its name refers to Thule, the ancient name for a mythical northern land, often associated with Scandinavia. The color 'Thulian Pink' itself was standardized and gained recognition in various color systems, such as Plochere Color System (1948), and is also listed in the ISCC-NBS Dictionary of Color Names (1955). It represents a medium, somewhat muted pink with a hint of purple.
First Recorded Use
1904 (as 'Thulite Pink' for a mineral), 1925 (as 'Thulian Pink' in color systems)
Cultural Associations
Thulian Pink is often associated with femininity, romance, and a certain delicate elegance. Due to its mineral origin, it can also evoke a sense of natural beauty and geological wonder. It's a less common and perhaps more sophisticated pink than brighter, more saturated shades, making it popular in design for a subtle yet distinct touch.
Code Snippets
/* Background */
.element {
background-color: #DE6FA1;
}
/* Text */
.element {
color: #DE6FA1;
}
/* Border */
.element {
border: 1px solid #DE6FA1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DE6FA1,
#6FDEAC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DE6FA1,
#6FDEAC
);
}
// SCSS variable
$thulian-pink: #DE6FA1;
// With RGB channels (useful for rgba() usage)
$thulian-pink-r: 222;
$thulian-pink-g: 111;
$thulian-pink-b: 161;
// Usage
.element {
background-color: $thulian-pink;
color: rgba($thulian-pink-r, $thulian-pink-g, $thulian-pink-b, 0.8);
}