#FA64BA Neon Pink
rgb(250, 100, 186)
Color conversions
- HEX
- #FA64BA
- RGB
- rgb(250, 100, 186)
- RGBA
- rgba(250, 100, 186, 1)
- HSL
- hsl(326, 94%, 69%)
- HSV / HSB
- hsv(326, 60%, 98%)
- CMYK
- cmyk(0%, 60%, 26%, 2%)
Wide-gamut spaces
- XYZ
- xyz(52.846, 32.989, 50.029)
- LAB
- lab(64.15 65.66 -16.14)
- LCH
- lch(64.15 67.62 346.19)
- OKLAB
- oklab(71.76% 0.1985 -0.0424)
- OKLCH
- oklch(71.76% 0.203 347.95)
- 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
#fa64ba1a
#fa64ba33
#fa64ba4d
#fa64ba66
#fa64ba80
#fa64ba99
#fa64bab3
#fa64bacc
#fa64bae6
#fa64baff
Accessibility and contrast
On white
2.76:1
Body text Fail · Large text Fail
On black
7.6:1
Body text AAA · Large text AA
White-on-color contrast is 2.76: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: #fa64ba;
--color-neon-pink-rgb: 250 100 186;
--color-neon-pink-hsl: 326 94% 69%;
--color-neon-pink-oklch: 71.76% 0.203 347.95;
}
.element {
color: #fa64ba;
background-color: hsl(326, 94%, 69%);
border: 1px solid rgb(250 100 186 / 40%);
}SCSS
$neon-pink: #fa64ba;
$neon-pink-light: #fdb2dd;
$neon-pink-dark: #7d325d;
.element {
color: $neon-pink;
background: rgba($neon-pink, 0.12);
&:hover {
color: darken($neon-pink, 8%);
}
}LESS
@neon-pink: #fa64ba;
@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: #fee0f1;
--color-neon-pink-100: #fed1ea;
--color-neon-pink-200: #fdc1e3;
--color-neon-pink-300: #fca2d6;
--color-neon-pink-400: #fb83c8;
--color-neon-pink-500: #fa64ba;
--color-neon-pink-600: #e15aa7;
--color-neon-pink-700: #af4682;
--color-neon-pink-800: #7d325d;
--color-neon-pink-900: #4b1e38;
}
/* Usage */
<div class="bg-neon-pink-500 text-neon-pink-50 ring-neon-pink-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#fa64ba]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$neon-pink: #fa64ba;
$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(0xFFFA64BA);
// As a MaterialColor swatch
const MaterialColor neonPinkSwatch = MaterialColor(0xFFFA64BA, <int, Color>{
50: Color(0xFFFEE0F1),
100: Color(0xFFFED1EA),
200: Color(0xFFFDC1E3),
300: Color(0xFFFCA2D6),
400: Color(0xFFFB83C8),
500: Color(0xFFFA64BA),
600: Color(0xFFE15AA7),
700: Color(0xFFAF4682),
800: Color(0xFF7D325D),
900: Color(0xFF4B1E38),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #fa64ba — Neon Pink
static let neonPink = Color(
red: 0.9804,
green: 0.3922,
blue: 0.7294
)
}
// UIKit
extension UIColor {
static let neonPink = UIColor(
red: 0.9804,
green: 0.3922,
blue: 0.7294,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="neon_pink">#FA64BA</color>
<color name="neon_pink_translucent">#80FA64BA</color>
</resources>
<!-- Jetpack Compose -->
val NeonPink = Color(0xFFFA64BA)JavaScript
export const NEON_PINK = {
hex: "#fa64ba",
rgb: [250, 100, 186],
hsl: [326, 94, 69],
oklch: "oklch(71.76% 0.203 347.95)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"neon-pink": {
"$type": "color",
"$value": "#fa64ba",
"$description": "Neon Pink — generated by ColorVerse AI"
}
}