#CDAFBE Thistle
rgb(205, 175, 190)
Color conversions
- HEX
- #CDAFBE
- RGB
- rgb(205, 175, 190)
- RGBA
- rgba(205, 175, 190, 1)
- HSL
- hsl(330, 23%, 75%)
- HSV / HSB
- hsv(330, 15%, 80%)
- CMYK
- cmyk(0%, 15%, 7%, 20%)
Wide-gamut spaces
- XYZ
- xyz(49.8, 47.358, 55.223)
- LAB
- lab(74.42 13.36 -3.6)
- LCH
- lch(74.42 13.83 344.9)
- OKLAB
- oklab(78.46% 0.0389 -0.0094)
- OKLCH
- oklch(78.46% 0.04 346.43)
- 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
#cdafbe1a
#cdafbe33
#cdafbe4d
#cdafbe66
#cdafbe80
#cdafbe99
#cdafbeb3
#cdafbecc
#cdafbee6
#cdafbeff
Accessibility and contrast
On white
2.01:1
Body text Fail · Large text Fail
On black
10.47:1
Body text AAA · Large text AA
White-on-color contrast is 2.01: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
Warmth and softness, decoupled from its old gendering
Soft pinks lower perceived intensity and read as calm and welcoming. Contemporary design has largely detached pink from mid-century gender coding, using dusty and clay tones as sophisticated warm neutrals.
Affection and care in most markets; in Japan cherry blossom pink carries a specific association with transience and spring.
Pink was considered a masculine colour in eighteenth-century Europe — a diluted, and therefore junior, red. The current coding is a twentieth-century marketing invention, not a tradition.
Excellent for wellness, hospitality, and direct-to-consumer brands wanting warmth without red's urgency. Muted pinks work well as full-page backgrounds where saturated ones would not.
Common industries: Wellness, Hospitality, DTC retail, Beauty, Publishing. Pairs well with deep green for a modern pairing, warm brown for editorial calm, off-white for softness.
Code exports
CSS
:root {
--color-thistle: #cdafbe;
--color-thistle-rgb: 205 175 190;
--color-thistle-hsl: 330 23% 75%;
--color-thistle-oklch: 78.46% 0.04 346.43;
}
.element {
color: #cdafbe;
background-color: hsl(330, 23%, 75%);
border: 1px solid rgb(205 175 190 / 40%);
}SCSS
$thistle: #cdafbe;
$thistle-light: #e6d7df;
$thistle-dark: #67585f;
.element {
color: $thistle;
background: rgba($thistle, 0.12);
&:hover {
color: darken($thistle, 8%);
}
}LESS
@thistle: #cdafbe;
@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: #f5eff2;
--color-thistle-100: #f0e7ec;
--color-thistle-200: #ebdfe5;
--color-thistle-300: #e1cfd8;
--color-thistle-400: #d7bfcb;
--color-thistle-500: #cdafbe;
--color-thistle-600: #b99eab;
--color-thistle-700: #907a85;
--color-thistle-800: #67585f;
--color-thistle-900: #3e3539;
}
/* Usage */
<div class="bg-thistle-500 text-thistle-50 ring-thistle-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#cdafbe]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$thistle: #cdafbe;
$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(0xFFCDAFBE);
// As a MaterialColor swatch
const MaterialColor thistleSwatch = MaterialColor(0xFFCDAFBE, <int, Color>{
50: Color(0xFFF5EFF2),
100: Color(0xFFF0E7EC),
200: Color(0xFFEBDFE5),
300: Color(0xFFE1CFD8),
400: Color(0xFFD7BFCB),
500: Color(0xFFCDAFBE),
600: Color(0xFFB99EAB),
700: Color(0xFF907A85),
800: Color(0xFF67585F),
900: Color(0xFF3E3539),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #cdafbe — Thistle
static let thistle = Color(
red: 0.8039,
green: 0.6863,
blue: 0.7451
)
}
// UIKit
extension UIColor {
static let thistle = UIColor(
red: 0.8039,
green: 0.6863,
blue: 0.7451,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="thistle">#CDAFBE</color>
<color name="thistle_translucent">#80CDAFBE</color>
</resources>
<!-- Jetpack Compose -->
val Thistle = Color(0xFFCDAFBE)JavaScript
export const THISTLE = {
hex: "#cdafbe",
rgb: [205, 175, 190],
hsl: [330, 23, 75],
oklch: "oklch(78.46% 0.04 346.43)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"thistle": {
"$type": "color",
"$value": "#cdafbe",
"$description": "Thistle — generated by ColorVerse AI"
}
}