#FF258F Deep Pink

rgb(255, 37, 143)

Color conversions

HEX
#FF258F
RGB
rgb(255, 37, 143)
RGBA
rgba(255, 37, 143, 1)
HSL
hsl(331, 100%, 57%)
HSV / HSB
hsv(331, 85%, 100%)
CMYK
cmyk(0%, 85%, 44%, 0%)

Wide-gamut spaces

XYZ
xyz(46.863, 24.573, 28.257)
LAB
lab(56.66 81.83 -2.3)
LCH
lch(56.66 81.86 358.39)
OKLAB
oklab(65.96% 0.2522 -0.0051)
OKLCH
oklch(65.96% 0.2522 358.85)
Nearest name
Deep 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

#ff258f1a

#ff258f33

#ff258f4d

#ff258f66

#ff258f80

#ff258f99

#ff258fb3

#ff258fcc

#ff258fe6

#ff258fff

Accessibility and contrast

On white

3.55:1

Body text AA Large · Large text AA

On black

5.91:1

Body text AA · Large text AA

White-on-color contrast is 3.55: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

Warmth and softness, decoupled from its old gendering

Soft pinks lower perceived intensity and read as calm and welcoming. Contemporary design has largely detached pink from mid-century gender coding, using dusty and clay tones as sophisticated warm neutrals.

Affection and care in most markets; in Japan cherry blossom pink carries a specific association with transience and spring.

Pink was considered a masculine colour in eighteenth-century Europe — a diluted, and therefore junior, red. The current coding is a twentieth-century marketing invention, not a tradition.

Excellent for wellness, hospitality, and direct-to-consumer brands wanting warmth without red's urgency. Muted pinks work well as full-page backgrounds where saturated ones would not.

Common industries: Wellness, Hospitality, DTC retail, Beauty, Publishing. Pairs well with deep green for a modern pairing, warm brown for editorial calm, off-white for softness.

Code exports

CSS

:root {
  --color-deep-pink: #ff258f;
  --color-deep-pink-rgb: 255 37 143;
  --color-deep-pink-hsl: 331 100% 57%;
  --color-deep-pink-oklch: 65.96% 0.2522 358.85;
}

.element {
  color: #ff258f;
  background-color: hsl(331, 100%, 57%);
  border: 1px solid rgb(255 37 143 / 40%);
}

SCSS

$deep-pink: #ff258f;
$deep-pink-light: #ff92c7;
$deep-pink-dark: #801348;

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

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

LESS

@deep-pink: #ff258f;
@deep-pink-light: lighten(@deep-pink, 12%);
@deep-pink-dark: darken(@deep-pink, 12%);

.element {
  color: @deep-pink;
  background: fade(@deep-pink, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-deep-pink-50: #ffd3e9;
  --color-deep-pink-100: #ffbedd;
  --color-deep-pink-200: #ffa8d2;
  --color-deep-pink-300: #ff7cbc;
  --color-deep-pink-400: #ff51a5;
  --color-deep-pink-500: #ff258f;
  --color-deep-pink-600: #e62181;
  --color-deep-pink-700: #b31a64;
  --color-deep-pink-800: #801348;
  --color-deep-pink-900: #4d0b2b;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$deep-pink: #ff258f;
$primary: $deep-pink;

$theme-colors: map-merge($theme-colors, (
  "deep-pink": $deep-pink
));

// Generates .text-deep-pink, .bg-deep-pink, .btn-deep-pink
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color deepPink = Color(0xFFFF258F);

// As a MaterialColor swatch
const MaterialColor deepPinkSwatch = MaterialColor(0xFFFF258F, <int, Color>{
  50: Color(0xFFFFD3E9),
  100: Color(0xFFFFBEDD),
  200: Color(0xFFFFA8D2),
  300: Color(0xFFFF7CBC),
  400: Color(0xFFFF51A5),
  500: Color(0xFFFF258F),
  600: Color(0xFFE62181),
  700: Color(0xFFB31A64),
  800: Color(0xFF801348),
  900: Color(0xFF4D0B2B),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #ff258f — Deep Pink
    static let deepPink = Color(
        red: 1,
        green: 0.1451,
        blue: 0.5608
    )
}

// UIKit
extension UIColor {
    static let deepPink = UIColor(
        red: 1,
        green: 0.1451,
        blue: 0.5608,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="deep_pink">#FF258F</color>
    <color name="deep_pink_translucent">#80FF258F</color>
</resources>

<!-- Jetpack Compose -->
val DeepPink = Color(0xFFFF258F)

JavaScript

export const DEEP_PINK = {
  hex: "#ff258f",
  rgb: [255, 37, 143],
  hsl: [331, 100, 57],
  oklch: "oklch(65.96% 0.2522 358.85)",
};

JSON tokens

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