#F2AFCD Cherry Blossom
rgb(242, 175, 205)
Color conversions
- HEX
- #F2AFCD
- RGB
- rgb(242, 175, 205)
- RGBA
- rgba(242, 175, 205, 1)
- HSL
- hsl(333, 72%, 82%)
- HSV / HSB
- hsv(333, 28%, 95%)
- CMYK
- cmyk(0%, 28%, 15%, 5%)
Wide-gamut spaces
- XYZ
- xyz(62.968, 53.948, 64.842)
- LAB
- lab(78.43 28.84 -5.45)
- LCH
- lch(78.43 29.36 349.29)
- OKLAB
- oklab(82.52% 0.0855 -0.0141)
- OKLCH
- oklch(82.52% 0.0866 350.64)
- Nearest name
- Cherry Blossom
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
#f2afcd1a
#f2afcd33
#f2afcd4d
#f2afcd66
#f2afcd80
#f2afcd99
#f2afcdb3
#f2afcdcc
#f2afcde6
#f2afcdff
Accessibility and contrast
On white
1.78:1
Body text Fail · Large text Fail
On black
11.79:1
Body text AAA · Large text AA
White-on-color contrast is 1.78: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-cherry-blossom: #f2afcd;
--color-cherry-blossom-rgb: 242 175 205;
--color-cherry-blossom-hsl: 333 72% 82%;
--color-cherry-blossom-oklch: 82.52% 0.0866 350.64;
}
.element {
color: #f2afcd;
background-color: hsl(333, 72%, 82%);
border: 1px solid rgb(242 175 205 / 40%);
}SCSS
$cherry-blossom: #f2afcd;
$cherry-blossom-light: #f9d7e6;
$cherry-blossom-dark: #795867;
.element {
color: $cherry-blossom;
background: rgba($cherry-blossom, 0.12);
&:hover {
color: darken($cherry-blossom, 8%);
}
}LESS
@cherry-blossom: #f2afcd;
@cherry-blossom-light: lighten(@cherry-blossom, 12%);
@cherry-blossom-dark: darken(@cherry-blossom, 12%);
.element {
color: @cherry-blossom;
background: fade(@cherry-blossom, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-cherry-blossom-50: #fceff5;
--color-cherry-blossom-100: #fbe7f0;
--color-cherry-blossom-200: #fadfeb;
--color-cherry-blossom-300: #f7cfe1;
--color-cherry-blossom-400: #f5bfd7;
--color-cherry-blossom-500: #f2afcd;
--color-cherry-blossom-600: #da9eb9;
--color-cherry-blossom-700: #a97a90;
--color-cherry-blossom-800: #795867;
--color-cherry-blossom-900: #49353e;
}
/* Usage */
<div class="bg-cherry-blossom-500 text-cherry-blossom-50 ring-cherry-blossom-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#f2afcd]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$cherry-blossom: #f2afcd;
$primary: $cherry-blossom;
$theme-colors: map-merge($theme-colors, (
"cherry-blossom": $cherry-blossom
));
// Generates .text-cherry-blossom, .bg-cherry-blossom, .btn-cherry-blossom
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color cherryBlossom = Color(0xFFF2AFCD);
// As a MaterialColor swatch
const MaterialColor cherryBlossomSwatch = MaterialColor(0xFFF2AFCD, <int, Color>{
50: Color(0xFFFCEFF5),
100: Color(0xFFFBE7F0),
200: Color(0xFFFADFEB),
300: Color(0xFFF7CFE1),
400: Color(0xFFF5BFD7),
500: Color(0xFFF2AFCD),
600: Color(0xFFDA9EB9),
700: Color(0xFFA97A90),
800: Color(0xFF795867),
900: Color(0xFF49353E),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #f2afcd — Cherry Blossom
static let cherryBlossom = Color(
red: 0.949,
green: 0.6863,
blue: 0.8039
)
}
// UIKit
extension UIColor {
static let cherryBlossom = UIColor(
red: 0.949,
green: 0.6863,
blue: 0.8039,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="cherry_blossom">#F2AFCD</color>
<color name="cherry_blossom_translucent">#80F2AFCD</color>
</resources>
<!-- Jetpack Compose -->
val CherryBlossom = Color(0xFFF2AFCD)JavaScript
export const CHERRY_BLOSSOM = {
hex: "#f2afcd",
rgb: [242, 175, 205],
hsl: [333, 72, 82],
oklch: "oklch(82.52% 0.0866 350.64)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"cherry-blossom": {
"$type": "color",
"$value": "#f2afcd",
"$description": "Cherry Blossom — generated by ColorVerse AI"
}
}