#EA79B2 Pale Violet Red
rgb(234, 121, 178)
Color conversions
- HEX
- #EA79B2
- RGB
- rgb(234, 121, 178)
- RGBA
- rgba(234, 121, 178, 1)
- HSL
- hsl(330, 73%, 70%)
- HSV / HSB
- hsv(330, 48%, 92%)
- CMYK
- cmyk(0%, 48%, 24%, 8%)
Wide-gamut spaces
- XYZ
- xyz(48.806, 34.385, 46.177)
- LAB
- lab(65.27 50.1 -10.15)
- LCH
- lch(65.27 51.12 348.55)
- OKLAB
- oklab(72.05% 0.1507 -0.0264)
- OKLCH
- oklch(72.05% 0.1529 350.07)
- 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
#ea79b21a
#ea79b233
#ea79b24d
#ea79b266
#ea79b280
#ea79b299
#ea79b2b3
#ea79b2cc
#ea79b2e6
#ea79b2ff
Accessibility and contrast
On white
2.67:1
Body text Fail · Large text Fail
On black
7.88:1
Body text AAA · Large text AA
White-on-color contrast is 2.67: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-pale-violet-red: #ea79b2;
--color-pale-violet-red-rgb: 234 121 178;
--color-pale-violet-red-hsl: 330 73% 70%;
--color-pale-violet-red-oklch: 72.05% 0.1529 350.07;
}
.element {
color: #ea79b2;
background-color: hsl(330, 73%, 70%);
border: 1px solid rgb(234 121 178 / 40%);
}SCSS
$pale-violet-red: #ea79b2;
$pale-violet-red-light: #f5bcd9;
$pale-violet-red-dark: #753d59;
.element {
color: $pale-violet-red;
background: rgba($pale-violet-red, 0.12);
&:hover {
color: darken($pale-violet-red, 8%);
}
}LESS
@pale-violet-red: #ea79b2;
@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: #fbe4f0;
--color-pale-violet-red-100: #f9d7e8;
--color-pale-violet-red-200: #f7c9e0;
--color-pale-violet-red-300: #f2afd1;
--color-pale-violet-red-400: #ee94c1;
--color-pale-violet-red-500: #ea79b2;
--color-pale-violet-red-600: #d36da0;
--color-pale-violet-red-700: #a4557d;
--color-pale-violet-red-800: #753d59;
--color-pale-violet-red-900: #462435;
}
/* 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-[#ea79b2]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$pale-violet-red: #ea79b2;
$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(0xFFEA79B2);
// As a MaterialColor swatch
const MaterialColor paleVioletRedSwatch = MaterialColor(0xFFEA79B2, <int, Color>{
50: Color(0xFFFBE4F0),
100: Color(0xFFF9D7E8),
200: Color(0xFFF7C9E0),
300: Color(0xFFF2AFD1),
400: Color(0xFFEE94C1),
500: Color(0xFFEA79B2),
600: Color(0xFFD36DA0),
700: Color(0xFFA4557D),
800: Color(0xFF753D59),
900: Color(0xFF462435),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #ea79b2 — Pale Violet Red
static let paleVioletRed = Color(
red: 0.9176,
green: 0.4745,
blue: 0.698
)
}
// UIKit
extension UIColor {
static let paleVioletRed = UIColor(
red: 0.9176,
green: 0.4745,
blue: 0.698,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="pale_violet_red">#EA79B2</color>
<color name="pale_violet_red_translucent">#80EA79B2</color>
</resources>
<!-- Jetpack Compose -->
val PaleVioletRed = Color(0xFFEA79B2)JavaScript
export const PALE_VIOLET_RED = {
hex: "#ea79b2",
rgb: [234, 121, 178],
hsl: [330, 73, 70],
oklch: "oklch(72.05% 0.1529 350.07)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"pale-violet-red": {
"$type": "color",
"$value": "#ea79b2",
"$description": "Pale Violet Red — generated by ColorVerse AI"
}
}