#FA2F89 Deep Pink
rgb(250, 47, 137)
Color conversions
- HEX
- #FA2F89
- RGB
- rgb(250, 47, 137)
- RGBA
- rgba(250, 47, 137, 1)
- HSL
- hsl(333, 95%, 58%)
- HSV / HSB
- hsv(333, 81%, 98%)
- CMYK
- cmyk(0%, 81%, 45%, 2%)
Wide-gamut spaces
- XYZ
- xyz(44.96, 24.169, 25.96)
- LAB
- lab(56.26 78.13 0.57)
- LCH
- lch(56.26 78.13 0.41)
- OKLAB
- oklab(65.45% 0.2403 0.0023)
- OKLCH
- oklch(65.45% 0.2403 0.55)
- Nearest name
- Deep Pink
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
#fa2f891a
#fa2f8933
#fa2f894d
#fa2f8966
#fa2f8980
#fa2f8999
#fa2f89b3
#fa2f89cc
#fa2f89e6
#fa2f89ff
Accessibility and contrast
On white
3.6:1
Body text AA Large · Large text AA
On black
5.83:1
Body text AA · Large text AA
White-on-color contrast is 3.6: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-deep-pink: #fa2f89;
--color-deep-pink-rgb: 250 47 137;
--color-deep-pink-hsl: 333 95% 58%;
--color-deep-pink-oklch: 65.45% 0.2403 0.55;
}
.element {
color: #fa2f89;
background-color: hsl(333, 95%, 58%);
border: 1px solid rgb(250 47 137 / 40%);
}SCSS
$deep-pink: #fa2f89;
$deep-pink-light: #fd97c4;
$deep-pink-dark: #7d1845;
.element {
color: $deep-pink;
background: rgba($deep-pink, 0.12);
&:hover {
color: darken($deep-pink, 8%);
}
}LESS
@deep-pink: #fa2f89;
@deep-pink-light: lighten(@deep-pink, 12%);
@deep-pink-dark: darken(@deep-pink, 12%);
.element {
color: @deep-pink;
background: fade(@deep-pink, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-deep-pink-50: #fed5e7;
--color-deep-pink-100: #fec1dc;
--color-deep-pink-200: #fdacd0;
--color-deep-pink-300: #fc82b8;
--color-deep-pink-400: #fb59a1;
--color-deep-pink-500: #fa2f89;
--color-deep-pink-600: #e12a7b;
--color-deep-pink-700: #af2160;
--color-deep-pink-800: #7d1845;
--color-deep-pink-900: #4b0e29;
}
/* Usage */
<div class="bg-deep-pink-500 text-deep-pink-50 ring-deep-pink-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#fa2f89]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$deep-pink: #fa2f89;
$primary: $deep-pink;
$theme-colors: map-merge($theme-colors, (
"deep-pink": $deep-pink
));
// Generates .text-deep-pink, .bg-deep-pink, .btn-deep-pink
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color deepPink = Color(0xFFFA2F89);
// As a MaterialColor swatch
const MaterialColor deepPinkSwatch = MaterialColor(0xFFFA2F89, <int, Color>{
50: Color(0xFFFED5E7),
100: Color(0xFFFEC1DC),
200: Color(0xFFFDACD0),
300: Color(0xFFFC82B8),
400: Color(0xFFFB59A1),
500: Color(0xFFFA2F89),
600: Color(0xFFE12A7B),
700: Color(0xFFAF2160),
800: Color(0xFF7D1845),
900: Color(0xFF4B0E29),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #fa2f89 — Deep Pink
static let deepPink = Color(
red: 0.9804,
green: 0.1843,
blue: 0.5373
)
}
// UIKit
extension UIColor {
static let deepPink = UIColor(
red: 0.9804,
green: 0.1843,
blue: 0.5373,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="deep_pink">#FA2F89</color>
<color name="deep_pink_translucent">#80FA2F89</color>
</resources>
<!-- Jetpack Compose -->
val DeepPink = Color(0xFFFA2F89)JavaScript
export const DEEP_PINK = {
hex: "#fa2f89",
rgb: [250, 47, 137],
hsl: [333, 95, 58],
oklch: "oklch(65.45% 0.2403 0.55)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"deep-pink": {
"$type": "color",
"$value": "#fa2f89",
"$description": "Deep Pink — generated by ColorVerse AI"
}
}