#EF4CCD Neon Pink
rgb(239, 76, 205)
Color conversions
- HEX
- #EF4CCD
- RGB
- rgb(239, 76, 205)
- RGBA
- rgba(239, 76, 205, 1)
- HSL
- hsl(313, 84%, 62%)
- HSV / HSB
- hsv(313, 68%, 94%)
- CMYK
- cmyk(0%, 68%, 14%, 6%)
Wide-gamut spaces
- XYZ
- xyz(49.201, 27.932, 60.546)
- LAB
- lab(59.83 74.63 -33.73)
- LCH
- lch(59.83 81.89 335.68)
- OKLAB
- oklab(68.51% 0.2198 -0.0915)
- OKLCH
- oklch(68.51% 0.2381 337.39)
- Nearest name
- Neon 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
#ef4ccd1a
#ef4ccd33
#ef4ccd4d
#ef4ccd66
#ef4ccd80
#ef4ccd99
#ef4ccdb3
#ef4ccdcc
#ef4ccde6
#ef4ccdff
Accessibility and contrast
On white
3.19:1
Body text AA Large · Large text AA
On black
6.59:1
Body text AA · Large text AA
White-on-color contrast is 3.19: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-neon-pink: #ef4ccd;
--color-neon-pink-rgb: 239 76 205;
--color-neon-pink-hsl: 313 84% 62%;
--color-neon-pink-oklch: 68.51% 0.2381 337.39;
}
.element {
color: #ef4ccd;
background-color: hsl(313, 84%, 62%);
border: 1px solid rgb(239 76 205 / 40%);
}SCSS
$neon-pink: #ef4ccd;
$neon-pink-light: #f7a6e6;
$neon-pink-dark: #782667;
.element {
color: $neon-pink;
background: rgba($neon-pink, 0.12);
&:hover {
color: darken($neon-pink, 8%);
}
}LESS
@neon-pink: #ef4ccd;
@neon-pink-light: lighten(@neon-pink, 12%);
@neon-pink-dark: darken(@neon-pink, 12%);
.element {
color: @neon-pink;
background: fade(@neon-pink, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-neon-pink-50: #fcdbf5;
--color-neon-pink-100: #fac9f0;
--color-neon-pink-200: #f9b7eb;
--color-neon-pink-300: #f594e1;
--color-neon-pink-400: #f270d7;
--color-neon-pink-500: #ef4ccd;
--color-neon-pink-600: #d744b9;
--color-neon-pink-700: #a73590;
--color-neon-pink-800: #782667;
--color-neon-pink-900: #48173e;
}
/* Usage */
<div class="bg-neon-pink-500 text-neon-pink-50 ring-neon-pink-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#ef4ccd]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$neon-pink: #ef4ccd;
$primary: $neon-pink;
$theme-colors: map-merge($theme-colors, (
"neon-pink": $neon-pink
));
// Generates .text-neon-pink, .bg-neon-pink, .btn-neon-pink
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color neonPink = Color(0xFFEF4CCD);
// As a MaterialColor swatch
const MaterialColor neonPinkSwatch = MaterialColor(0xFFEF4CCD, <int, Color>{
50: Color(0xFFFCDBF5),
100: Color(0xFFFAC9F0),
200: Color(0xFFF9B7EB),
300: Color(0xFFF594E1),
400: Color(0xFFF270D7),
500: Color(0xFFEF4CCD),
600: Color(0xFFD744B9),
700: Color(0xFFA73590),
800: Color(0xFF782667),
900: Color(0xFF48173E),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #ef4ccd — Neon Pink
static let neonPink = Color(
red: 0.9373,
green: 0.298,
blue: 0.8039
)
}
// UIKit
extension UIColor {
static let neonPink = UIColor(
red: 0.9373,
green: 0.298,
blue: 0.8039,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="neon_pink">#EF4CCD</color>
<color name="neon_pink_translucent">#80EF4CCD</color>
</resources>
<!-- Jetpack Compose -->
val NeonPink = Color(0xFFEF4CCD)JavaScript
export const NEON_PINK = {
hex: "#ef4ccd",
rgb: [239, 76, 205],
hsl: [313, 84, 62],
oklch: "oklch(68.51% 0.2381 337.39)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"neon-pink": {
"$type": "color",
"$value": "#ef4ccd",
"$description": "Neon Pink — generated by ColorVerse AI"
}
}