#D2CBDF Thistle
rgb(210, 203, 223)
Color conversions
- HEX
- #D2CBDF
- RGB
- rgb(210, 203, 223)
- RGBA
- rgba(210, 203, 223, 1)
- HSL
- hsl(261, 24%, 84%)
- HSV / HSB
- hsv(261, 9%, 87%)
- CMYK
- cmyk(6%, 9%, 0%, 13%)
Wide-gamut spaces
- XYZ
- xyz(61.251, 61.741, 78.488)
- LAB
- lab(82.78 6.12 -9.02)
- LCH
- lch(82.78 10.9 304.15)
- OKLAB
- oklab(85.38% 0.0149 -0.0242)
- OKLCH
- oklch(85.38% 0.0284 301.69)
- Nearest name
- Thistle
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#d2cbdf1a
#d2cbdf33
#d2cbdf4d
#d2cbdf66
#d2cbdf80
#d2cbdf99
#d2cbdfb3
#d2cbdfcc
#d2cbdfe6
#d2cbdfff
Accessibility and contrast
On white
1.57:1
Body text Fail · Large text Fail
On black
13.35:1
Body text AAA · Large text AA
White-on-color contrast is 1.57:1.
Color blindness preview
Protanopia
No red cones — ~1% of men
Protanomaly
Reduced red sensitivity — ~1% of men
Deuteranopia
No green cones — ~1% of men
Deuteranomaly
Reduced green sensitivity — ~5% of men
Tritanopia
No blue cones — very rare
Tritanomaly
Reduced blue sensitivity — very rare
Achromatopsia
No color perception — ~1 in 30,000
Achromatomaly
Partial color perception — rare
Meaning, psychology and brand usage
Craft, imagination, and modern premium
Violet reads as creative and considered. Because it is rare in nature it feels designed rather than found, which is why it has become the signature of developer tooling and creative software over the last decade.
Royalty and luxury in Western markets, mourning in Catholic tradition and parts of Latin America, and spirituality across several Eastern traditions.
Tyrian purple was extracted from murex sea snails at roughly 250,000 shells per gram, restricting it to emperors by law. Perkin's accidental synthesis of mauveine in 1856 launched the entire synthetic dye industry.
Strong for creative tools, beauty, and premium subscriptions. Keep the surrounding neutrals genuinely neutral — violet plus warm gray quickly reads dated.
Common industries: Creative software, Beauty, Education, Streaming, Web3. Pairs well with lime for a sharp accent, warm white for softness, near-black for luxury.
Code exports
CSS
:root {
--color-thistle: #d2cbdf;
--color-thistle-rgb: 210 203 223;
--color-thistle-hsl: 261 24% 84%;
--color-thistle-oklch: 85.38% 0.0284 301.69;
}
.element {
color: #d2cbdf;
background-color: hsl(261, 24%, 84%);
border: 1px solid rgb(210 203 223 / 40%);
}SCSS
$thistle: #d2cbdf;
$thistle-light: #e9e5ef;
$thistle-dark: #696670;
.element {
color: $thistle;
background: rgba($thistle, 0.12);
&:hover {
color: darken($thistle, 8%);
}
}LESS
@thistle: #d2cbdf;
@thistle-light: lighten(@thistle, 12%);
@thistle-dark: darken(@thistle, 12%);
.element {
color: @thistle;
background: fade(@thistle, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-thistle-50: #f6f5f9;
--color-thistle-100: #f2eff5;
--color-thistle-200: #edeaf2;
--color-thistle-300: #e4e0ec;
--color-thistle-400: #dbd5e5;
--color-thistle-500: #d2cbdf;
--color-thistle-600: #bdb7c9;
--color-thistle-700: #938e9c;
--color-thistle-800: #696670;
--color-thistle-900: #3f3d43;
}
/* Usage */
<div class="bg-thistle-500 text-thistle-50 ring-thistle-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#d2cbdf]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$thistle: #d2cbdf;
$primary: $thistle;
$theme-colors: map-merge($theme-colors, (
"thistle": $thistle
));
// Generates .text-thistle, .bg-thistle, .btn-thistle
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color thistle = Color(0xFFD2CBDF);
// As a MaterialColor swatch
const MaterialColor thistleSwatch = MaterialColor(0xFFD2CBDF, <int, Color>{
50: Color(0xFFF6F5F9),
100: Color(0xFFF2EFF5),
200: Color(0xFFEDEAF2),
300: Color(0xFFE4E0EC),
400: Color(0xFFDBD5E5),
500: Color(0xFFD2CBDF),
600: Color(0xFFBDB7C9),
700: Color(0xFF938E9C),
800: Color(0xFF696670),
900: Color(0xFF3F3D43),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #d2cbdf — Thistle
static let thistle = Color(
red: 0.8235,
green: 0.7961,
blue: 0.8745
)
}
// UIKit
extension UIColor {
static let thistle = UIColor(
red: 0.8235,
green: 0.7961,
blue: 0.8745,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="thistle">#D2CBDF</color>
<color name="thistle_translucent">#80D2CBDF</color>
</resources>
<!-- Jetpack Compose -->
val Thistle = Color(0xFFD2CBDF)JavaScript
export const THISTLE = {
hex: "#d2cbdf",
rgb: [210, 203, 223],
hsl: [261, 24, 84],
oklch: "oklch(85.38% 0.0284 301.69)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"thistle": {
"$type": "color",
"$value": "#d2cbdf",
"$description": "Thistle — generated by ColorVerse AI"
}
}