#FFAADE Plum
rgb(255, 170, 222)
Color conversions
- HEX
- #FFAADE
- RGB
- rgb(255, 170, 222)
- RGBA
- rgba(255, 170, 222, 1)
- HSL
- hsl(323, 100%, 83%)
- HSV / HSB
- hsv(323, 33%, 100%)
- CMYK
- cmyk(0%, 33%, 13%, 0%)
Wide-gamut spaces
- XYZ
- xyz(68.8, 55.287, 76.141)
- LAB
- lab(79.21 38.57 -13.37)
- LCH
- lch(79.21 40.82 340.88)
- OKLAB
- oklab(83.59% 0.113 -0.0353)
- OKLCH
- oklch(83.59% 0.1184 342.63)
- Nearest name
- Plum
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
#ffaade1a
#ffaade33
#ffaade4d
#ffaade66
#ffaade80
#ffaade99
#ffaadeb3
#ffaadecc
#ffaadee6
#ffaadeff
Accessibility and contrast
On white
1.74:1
Body text Fail · Large text Fail
On black
12.06:1
Body text AAA · Large text AA
White-on-color contrast is 1.74: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
Confident, contemporary, impossible to ignore
Magenta has no single wavelength — the brain constructs it — and that unusual quality is part of why it feels synthetic and current. It signals boldness and non-conformity without red's aggression.
Modernity, playfulness, and inclusivity in contemporary Western design; historically associated with fashion and print.
Named after the 1859 Battle of Magenta, the dye arrived alongside mauveine in the first wave of synthetic colours. It is one of the four process inks in CMYK printing.
Works as a high-impact accent or a brave primary in fashion, telecom, and culture. Needs generous white space; at scale it fatigues the eye quickly.
Common industries: Fashion, Telecom, Music, Culture, Beauty. Pairs well with deep indigo for depth, cream for softness, charcoal for editorial contrast.
Code exports
CSS
:root {
--color-plum: #ffaade;
--color-plum-rgb: 255 170 222;
--color-plum-hsl: 323 100% 83%;
--color-plum-oklch: 83.59% 0.1184 342.63;
}
.element {
color: #ffaade;
background-color: hsl(323, 100%, 83%);
border: 1px solid rgb(255 170 222 / 40%);
}SCSS
$plum: #ffaade;
$plum-light: #ffd5ef;
$plum-dark: #80556f;
.element {
color: $plum;
background: rgba($plum, 0.12);
&:hover {
color: darken($plum, 8%);
}
}LESS
@plum: #ffaade;
@plum-light: lighten(@plum, 12%);
@plum-dark: darken(@plum, 12%);
.element {
color: @plum;
background: fade(@plum, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-plum-50: #ffeef8;
--color-plum-100: #ffe6f5;
--color-plum-200: #ffddf2;
--color-plum-300: #ffcceb;
--color-plum-400: #ffbbe5;
--color-plum-500: #ffaade;
--color-plum-600: #e699c8;
--color-plum-700: #b3779b;
--color-plum-800: #80556f;
--color-plum-900: #4d3343;
}
/* Usage */
<div class="bg-plum-500 text-plum-50 ring-plum-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#ffaade]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$plum: #ffaade;
$primary: $plum;
$theme-colors: map-merge($theme-colors, (
"plum": $plum
));
// Generates .text-plum, .bg-plum, .btn-plum
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color plum = Color(0xFFFFAADE);
// As a MaterialColor swatch
const MaterialColor plumSwatch = MaterialColor(0xFFFFAADE, <int, Color>{
50: Color(0xFFFFEEF8),
100: Color(0xFFFFE6F5),
200: Color(0xFFFFDDF2),
300: Color(0xFFFFCCEB),
400: Color(0xFFFFBBE5),
500: Color(0xFFFFAADE),
600: Color(0xFFE699C8),
700: Color(0xFFB3779B),
800: Color(0xFF80556F),
900: Color(0xFF4D3343),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #ffaade — Plum
static let plum = Color(
red: 1,
green: 0.6667,
blue: 0.8706
)
}
// UIKit
extension UIColor {
static let plum = UIColor(
red: 1,
green: 0.6667,
blue: 0.8706,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="plum">#FFAADE</color>
<color name="plum_translucent">#80FFAADE</color>
</resources>
<!-- Jetpack Compose -->
val Plum = Color(0xFFFFAADE)JavaScript
export const PLUM = {
hex: "#ffaade",
rgb: [255, 170, 222],
hsl: [323, 100, 83],
oklch: "oklch(83.59% 0.1184 342.63)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"plum": {
"$type": "color",
"$value": "#ffaade",
"$description": "Plum — generated by ColorVerse AI"
}
}