#CD8DAB Lilac

rgb(205, 141, 171)

Color conversions

HEX
#CD8DAB
RGB
rgb(205, 141, 171)
RGBA
rgba(205, 141, 171, 1)
HSL
hsl(332, 39%, 68%)
HSV / HSB
hsv(332, 31%, 80%)
CMYK
cmyk(0%, 31%, 17%, 20%)

Wide-gamut spaces

XYZ
xyz(42.053, 34.971, 43.055)
LAB
lab(65.73 28.73 -5.89)
LCH
lch(65.73 29.33 348.41)
OKLAB
oklab(71.57% 0.0852 -0.0153)
OKLCH
oklch(71.57% 0.0866 349.84)
Nearest name
Lilac

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#cd8dab1a

#cd8dab33

#cd8dab4d

#cd8dab66

#cd8dab80

#cd8dab99

#cd8dabb3

#cd8dabcc

#cd8dabe6

#cd8dabff

Accessibility and contrast

On white

2.63:1

Body text Fail · Large text Fail

On black

7.99:1

Body text AAA · Large text AA

White-on-color contrast is 2.63: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-lilac: #cd8dab;
  --color-lilac-rgb: 205 141 171;
  --color-lilac-hsl: 332 39% 68%;
  --color-lilac-oklch: 71.57% 0.0866 349.84;
}

.element {
  color: #cd8dab;
  background-color: hsl(332, 39%, 68%);
  border: 1px solid rgb(205 141 171 / 40%);
}

SCSS

$lilac: #cd8dab;
$lilac-light: #e6c6d5;
$lilac-dark: #674756;

.element {
  color: $lilac;
  background: rgba($lilac, 0.12);

  &:hover {
    color: darken($lilac, 8%);
  }
}

LESS

@lilac: #cd8dab;
@lilac-light: lighten(@lilac, 12%);
@lilac-dark: darken(@lilac, 12%);

.element {
  color: @lilac;
  background: fade(@lilac, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-lilac-50: #f5e8ee;
  --color-lilac-100: #f0dde6;
  --color-lilac-200: #ebd1dd;
  --color-lilac-300: #e1bbcd;
  --color-lilac-400: #d7a4bc;
  --color-lilac-500: #cd8dab;
  --color-lilac-600: #b97f9a;
  --color-lilac-700: #906378;
  --color-lilac-800: #674756;
  --color-lilac-900: #3e2a33;
}

/* Usage */
<div class="bg-lilac-500 text-lilac-50 ring-lilac-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#cd8dab]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$lilac: #cd8dab;
$primary: $lilac;

$theme-colors: map-merge($theme-colors, (
  "lilac": $lilac
));

// Generates .text-lilac, .bg-lilac, .btn-lilac
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color lilac = Color(0xFFCD8DAB);

// As a MaterialColor swatch
const MaterialColor lilacSwatch = MaterialColor(0xFFCD8DAB, <int, Color>{
  50: Color(0xFFF5E8EE),
  100: Color(0xFFF0DDE6),
  200: Color(0xFFEBD1DD),
  300: Color(0xFFE1BBCD),
  400: Color(0xFFD7A4BC),
  500: Color(0xFFCD8DAB),
  600: Color(0xFFB97F9A),
  700: Color(0xFF906378),
  800: Color(0xFF674756),
  900: Color(0xFF3E2A33),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #cd8dab — Lilac
    static let lilac = Color(
        red: 0.8039,
        green: 0.5529,
        blue: 0.6706
    )
}

// UIKit
extension UIColor {
    static let lilac = UIColor(
        red: 0.8039,
        green: 0.5529,
        blue: 0.6706,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="lilac">#CD8DAB</color>
    <color name="lilac_translucent">#80CD8DAB</color>
</resources>

<!-- Jetpack Compose -->
val Lilac = Color(0xFFCD8DAB)

JavaScript

export const LILAC = {
  hex: "#cd8dab",
  rgb: [205, 141, 171],
  hsl: [332, 39, 68],
  oklch: "oklch(71.57% 0.0866 349.84)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "lilac": {
    "$type": "color",
    "$value": "#cd8dab",
    "$description": "Lilac — generated by ColorVerse AI"
  }
}