#EC7FC0 Hot Pink
rgb(236, 127, 192)
Color conversions
- HEX
- #EC7FC0
- RGB
- rgb(236, 127, 192)
- RGBA
- rgba(236, 127, 192, 1)
- HSL
- hsl(324, 74%, 71%)
- HSV / HSB
- hsv(324, 46%, 93%)
- CMYK
- cmyk(0%, 46%, 19%, 7%)
Wide-gamut spaces
- XYZ
- xyz(51.697, 36.821, 54.243)
- LAB
- lab(67.14 49.77 -15.2)
- LCH
- lch(67.14 52.04 343.02)
- OKLAB
- oklab(73.66% 0.148 -0.0402)
- OKLCH
- oklch(73.66% 0.1533 344.82)
- Nearest name
- Hot 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
#ec7fc01a
#ec7fc033
#ec7fc04d
#ec7fc066
#ec7fc080
#ec7fc099
#ec7fc0b3
#ec7fc0cc
#ec7fc0e6
#ec7fc0ff
Accessibility and contrast
On white
2.51:1
Body text Fail · Large text Fail
On black
8.36:1
Body text AAA · Large text AA
White-on-color contrast is 2.51: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-hot-pink: #ec7fc0;
--color-hot-pink-rgb: 236 127 192;
--color-hot-pink-hsl: 324 74% 71%;
--color-hot-pink-oklch: 73.66% 0.1533 344.82;
}
.element {
color: #ec7fc0;
background-color: hsl(324, 74%, 71%);
border: 1px solid rgb(236 127 192 / 40%);
}SCSS
$hot-pink: #ec7fc0;
$hot-pink-light: #f6bfe0;
$hot-pink-dark: #764060;
.element {
color: $hot-pink;
background: rgba($hot-pink, 0.12);
&:hover {
color: darken($hot-pink, 8%);
}
}LESS
@hot-pink: #ec7fc0;
@hot-pink-light: lighten(@hot-pink, 12%);
@hot-pink-dark: darken(@hot-pink, 12%);
.element {
color: @hot-pink;
background: fade(@hot-pink, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-hot-pink-50: #fbe5f2;
--color-hot-pink-100: #f9d9ec;
--color-hot-pink-200: #f7cce6;
--color-hot-pink-300: #f4b2d9;
--color-hot-pink-400: #f099cd;
--color-hot-pink-500: #ec7fc0;
--color-hot-pink-600: #d472ad;
--color-hot-pink-700: #a55986;
--color-hot-pink-800: #764060;
--color-hot-pink-900: #47263a;
}
/* Usage */
<div class="bg-hot-pink-500 text-hot-pink-50 ring-hot-pink-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#ec7fc0]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$hot-pink: #ec7fc0;
$primary: $hot-pink;
$theme-colors: map-merge($theme-colors, (
"hot-pink": $hot-pink
));
// Generates .text-hot-pink, .bg-hot-pink, .btn-hot-pink
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color hotPink = Color(0xFFEC7FC0);
// As a MaterialColor swatch
const MaterialColor hotPinkSwatch = MaterialColor(0xFFEC7FC0, <int, Color>{
50: Color(0xFFFBE5F2),
100: Color(0xFFF9D9EC),
200: Color(0xFFF7CCE6),
300: Color(0xFFF4B2D9),
400: Color(0xFFF099CD),
500: Color(0xFFEC7FC0),
600: Color(0xFFD472AD),
700: Color(0xFFA55986),
800: Color(0xFF764060),
900: Color(0xFF47263A),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #ec7fc0 — Hot Pink
static let hotPink = Color(
red: 0.9255,
green: 0.498,
blue: 0.7529
)
}
// UIKit
extension UIColor {
static let hotPink = UIColor(
red: 0.9255,
green: 0.498,
blue: 0.7529,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="hot_pink">#EC7FC0</color>
<color name="hot_pink_translucent">#80EC7FC0</color>
</resources>
<!-- Jetpack Compose -->
val HotPink = Color(0xFFEC7FC0)JavaScript
export const HOT_PINK = {
hex: "#ec7fc0",
rgb: [236, 127, 192],
hsl: [324, 74, 71],
oklch: "oklch(73.66% 0.1533 344.82)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"hot-pink": {
"$type": "color",
"$value": "#ec7fc0",
"$description": "Hot Pink — generated by ColorVerse AI"
}
}