#FF4DCE Neon Pink

rgb(255, 77, 206)

Color conversions

HEX
#FF4DCE
RGB
rgb(255, 77, 206)
RGBA
rgba(255, 77, 206, 1)
HSL
hsl(317, 100%, 65%)
HSV / HSB
hsv(317, 70%, 100%)
CMYK
cmyk(0%, 70%, 19%, 0%)

Wide-gamut spaces

XYZ
xyz(55.036, 31.029, 61.471)
LAB
lab(62.53 78.25 -29.9)
LCH
lch(62.53 83.76 339.09)
OKLAB
oklab(70.97% 0.2339 -0.0804)
OKLCH
oklch(70.97% 0.2473 341.02)
Nearest name
Neon 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

#ff4dce1a

#ff4dce33

#ff4dce4d

#ff4dce66

#ff4dce80

#ff4dce99

#ff4dceb3

#ff4dcecc

#ff4dcee6

#ff4dceff

Accessibility and contrast

On white

2.91:1

Body text Fail · Large text Fail

On black

7.2:1

Body text AAA · Large text AA

White-on-color contrast is 2.91: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: #ff4dce;
  --color-neon-pink-rgb: 255 77 206;
  --color-neon-pink-hsl: 317 100% 65%;
  --color-neon-pink-oklch: 70.97% 0.2473 341.02;
}

.element {
  color: #ff4dce;
  background-color: hsl(317, 100%, 65%);
  border: 1px solid rgb(255 77 206 / 40%);
}

SCSS

$neon-pink: #ff4dce;
$neon-pink-light: #ffa6e7;
$neon-pink-dark: #802767;

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

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

LESS

@neon-pink: #ff4dce;
@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: #ffdbf5;
  --color-neon-pink-100: #ffcaf0;
  --color-neon-pink-200: #ffb8eb;
  --color-neon-pink-300: #ff94e2;
  --color-neon-pink-400: #ff71d8;
  --color-neon-pink-500: #ff4dce;
  --color-neon-pink-600: #e645b9;
  --color-neon-pink-700: #b33690;
  --color-neon-pink-800: #802767;
  --color-neon-pink-900: #4d173e;
}

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

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

Bootstrap

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

// As a MaterialColor swatch
const MaterialColor neonPinkSwatch = MaterialColor(0xFFFF4DCE, <int, Color>{
  50: Color(0xFFFFDBF5),
  100: Color(0xFFFFCAF0),
  200: Color(0xFFFFB8EB),
  300: Color(0xFFFF94E2),
  400: Color(0xFFFF71D8),
  500: Color(0xFFFF4DCE),
  600: Color(0xFFE645B9),
  700: Color(0xFFB33690),
  800: Color(0xFF802767),
  900: Color(0xFF4D173E),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #ff4dce — Neon Pink
    static let neonPink = Color(
        red: 1,
        green: 0.302,
        blue: 0.8078
    )
}

// UIKit
extension UIColor {
    static let neonPink = UIColor(
        red: 1,
        green: 0.302,
        blue: 0.8078,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="neon_pink">#FF4DCE</color>
    <color name="neon_pink_translucent">#80FF4DCE</color>
</resources>

<!-- Jetpack Compose -->
val NeonPink = Color(0xFFFF4DCE)

JavaScript

export const NEON_PINK = {
  hex: "#ff4dce",
  rgb: [255, 77, 206],
  hsl: [317, 100, 65],
  oklch: "oklch(70.97% 0.2473 341.02)",
};

JSON tokens

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