#EF4FA0 Hot Pink

rgb(239, 79, 160)

Color conversions

HEX
#EF4FA0
RGB
rgb(239, 79, 160)
RGBA
rgba(239, 79, 160, 1)
HSL
hsl(330, 83%, 62%)
HSV / HSB
hsv(330, 67%, 94%)
CMYK
cmyk(0%, 67%, 33%, 6%)

Wide-gamut spaces

XYZ
xyz(44.74, 26.486, 36.007)
LAB
lab(58.5 67.85 -9.87)
LCH
lch(58.5 68.56 351.73)
OKLAB
oklab(66.97% 0.2073 -0.0253)
OKLCH
oklch(66.97% 0.2089 353.05)
Nearest name
Hot Pink

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#ef4fa01a

#ef4fa033

#ef4fa04d

#ef4fa066

#ef4fa080

#ef4fa099

#ef4fa0b3

#ef4fa0cc

#ef4fa0e6

#ef4fa0ff

Accessibility and contrast

On white

3.34:1

Body text AA Large · Large text AA

On black

6.3:1

Body text AA · Large text AA

White-on-color contrast is 3.34: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: #ef4fa0;
  --color-hot-pink-rgb: 239 79 160;
  --color-hot-pink-hsl: 330 83% 62%;
  --color-hot-pink-oklch: 66.97% 0.2089 353.05;
}

.element {
  color: #ef4fa0;
  background-color: hsl(330, 83%, 62%);
  border: 1px solid rgb(239 79 160 / 40%);
}

SCSS

$hot-pink: #ef4fa0;
$hot-pink-light: #f7a7d0;
$hot-pink-dark: #782850;

.element {
  color: $hot-pink;
  background: rgba($hot-pink, 0.12);

  &:hover {
    color: darken($hot-pink, 8%);
  }
}

LESS

@hot-pink: #ef4fa0;
@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: #fcdcec;
  --color-hot-pink-100: #facae3;
  --color-hot-pink-200: #f9b9d9;
  --color-hot-pink-300: #f595c6;
  --color-hot-pink-400: #f272b3;
  --color-hot-pink-500: #ef4fa0;
  --color-hot-pink-600: #d74790;
  --color-hot-pink-700: #a73770;
  --color-hot-pink-800: #782850;
  --color-hot-pink-900: #481830;
}

/* Usage */
<div class="bg-hot-pink-500 text-hot-pink-50 ring-hot-pink-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#ef4fa0]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$hot-pink: #ef4fa0;
$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(0xFFEF4FA0);

// As a MaterialColor swatch
const MaterialColor hotPinkSwatch = MaterialColor(0xFFEF4FA0, <int, Color>{
  50: Color(0xFFFCDCEC),
  100: Color(0xFFFACAE3),
  200: Color(0xFFF9B9D9),
  300: Color(0xFFF595C6),
  400: Color(0xFFF272B3),
  500: Color(0xFFEF4FA0),
  600: Color(0xFFD74790),
  700: Color(0xFFA73770),
  800: Color(0xFF782850),
  900: Color(0xFF481830),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #ef4fa0 — Hot Pink
    static let hotPink = Color(
        red: 0.9373,
        green: 0.3098,
        blue: 0.6275
    )
}

// UIKit
extension UIColor {
    static let hotPink = UIColor(
        red: 0.9373,
        green: 0.3098,
        blue: 0.6275,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="hot_pink">#EF4FA0</color>
    <color name="hot_pink_translucent">#80EF4FA0</color>
</resources>

<!-- Jetpack Compose -->
val HotPink = Color(0xFFEF4FA0)

JavaScript

export const HOT_PINK = {
  hex: "#ef4fa0",
  rgb: [239, 79, 160],
  hsl: [330, 83, 62],
  oklch: "oklch(66.97% 0.2089 353.05)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "hot-pink": {
    "$type": "color",
    "$value": "#ef4fa0",
    "$description": "Hot Pink — generated by ColorVerse AI"
  }
}