#EA74A2 Pale Violet Red
rgb(234, 116, 162)
Color conversions
- HEX
- #EA74A2
- RGB
- rgb(234, 116, 162)
- RGBA
- rgba(234, 116, 162, 1)
- HSL
- hsl(337, 74%, 69%)
- HSV / HSB
- hsv(337, 50%, 92%)
- CMYK
- cmyk(0%, 50%, 31%, 8%)
Wide-gamut spaces
- XYZ
- xyz(46.701, 32.596, 38.008)
- LAB
- lab(63.83 50.44 -3.18)
- LCH
- lch(63.83 50.54 356.39)
- OKLAB
- oklab(70.81% 0.153 -0.0077)
- OKLCH
- oklch(70.81% 0.1532 357.12)
- Nearest name
- Pale Violet Red
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
#ea74a21a
#ea74a233
#ea74a24d
#ea74a266
#ea74a280
#ea74a299
#ea74a2b3
#ea74a2cc
#ea74a2e6
#ea74a2ff
Accessibility and contrast
On white
2.79:1
Body text Fail · Large text Fail
On black
7.52:1
Body text AAA · Large text AA
White-on-color contrast is 2.79: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-pale-violet-red: #ea74a2;
--color-pale-violet-red-rgb: 234 116 162;
--color-pale-violet-red-hsl: 337 74% 69%;
--color-pale-violet-red-oklch: 70.81% 0.1532 357.12;
}
.element {
color: #ea74a2;
background-color: hsl(337, 74%, 69%);
border: 1px solid rgb(234 116 162 / 40%);
}SCSS
$pale-violet-red: #ea74a2;
$pale-violet-red-light: #f5bad1;
$pale-violet-red-dark: #753a51;
.element {
color: $pale-violet-red;
background: rgba($pale-violet-red, 0.12);
&:hover {
color: darken($pale-violet-red, 8%);
}
}LESS
@pale-violet-red: #ea74a2;
@pale-violet-red-light: lighten(@pale-violet-red, 12%);
@pale-violet-red-dark: darken(@pale-violet-red, 12%);
.element {
color: @pale-violet-red;
background: fade(@pale-violet-red, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-pale-violet-red-50: #fbe3ec;
--color-pale-violet-red-100: #f9d5e3;
--color-pale-violet-red-200: #f7c7da;
--color-pale-violet-red-300: #f2acc7;
--color-pale-violet-red-400: #ee90b5;
--color-pale-violet-red-500: #ea74a2;
--color-pale-violet-red-600: #d36892;
--color-pale-violet-red-700: #a45171;
--color-pale-violet-red-800: #753a51;
--color-pale-violet-red-900: #462331;
}
/* Usage */
<div class="bg-pale-violet-red-500 text-pale-violet-red-50 ring-pale-violet-red-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#ea74a2]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$pale-violet-red: #ea74a2;
$primary: $pale-violet-red;
$theme-colors: map-merge($theme-colors, (
"pale-violet-red": $pale-violet-red
));
// Generates .text-pale-violet-red, .bg-pale-violet-red, .btn-pale-violet-red
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color paleVioletRed = Color(0xFFEA74A2);
// As a MaterialColor swatch
const MaterialColor paleVioletRedSwatch = MaterialColor(0xFFEA74A2, <int, Color>{
50: Color(0xFFFBE3EC),
100: Color(0xFFF9D5E3),
200: Color(0xFFF7C7DA),
300: Color(0xFFF2ACC7),
400: Color(0xFFEE90B5),
500: Color(0xFFEA74A2),
600: Color(0xFFD36892),
700: Color(0xFFA45171),
800: Color(0xFF753A51),
900: Color(0xFF462331),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #ea74a2 — Pale Violet Red
static let paleVioletRed = Color(
red: 0.9176,
green: 0.4549,
blue: 0.6353
)
}
// UIKit
extension UIColor {
static let paleVioletRed = UIColor(
red: 0.9176,
green: 0.4549,
blue: 0.6353,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="pale_violet_red">#EA74A2</color>
<color name="pale_violet_red_translucent">#80EA74A2</color>
</resources>
<!-- Jetpack Compose -->
val PaleVioletRed = Color(0xFFEA74A2)JavaScript
export const PALE_VIOLET_RED = {
hex: "#ea74a2",
rgb: [234, 116, 162],
hsl: [337, 74, 69],
oklch: "oklch(70.81% 0.1532 357.12)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"pale-violet-red": {
"$type": "color",
"$value": "#ea74a2",
"$description": "Pale Violet Red — generated by ColorVerse AI"
}
}