#FCA6FA Mauve
rgb(252, 166, 250)
Color conversions
- HEX
- #FCA6FA
- RGB
- rgb(252, 166, 250)
- RGBA
- rgba(252, 166, 250, 1)
- HSL
- hsl(301, 93%, 82%)
- HSV / HSB
- hsv(301, 34%, 99%)
- CMYK
- cmyk(0%, 34%, 1%, 1%)
Wide-gamut spaces
- XYZ
- xyz(71.035, 54.873, 97.274)
- LAB
- lab(78.97 44.4 -28.89)
- LCH
- lch(78.97 52.97 326.96)
- OKLAB
- oklab(83.64% 0.1234 -0.0784)
- OKLCH
- oklch(83.64% 0.1462 327.58)
- Nearest name
- Mauve
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
#fca6fa1a
#fca6fa33
#fca6fa4d
#fca6fa66
#fca6fa80
#fca6fa99
#fca6fab3
#fca6facc
#fca6fae6
#fca6faff
Accessibility and contrast
On white
1.75:1
Body text Fail · Large text Fail
On black
11.97:1
Body text AAA · Large text AA
White-on-color contrast is 1.75: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-mauve: #fca6fa;
--color-mauve-rgb: 252 166 250;
--color-mauve-hsl: 301 93% 82%;
--color-mauve-oklch: 83.64% 0.1462 327.58;
}
.element {
color: #fca6fa;
background-color: hsl(301, 93%, 82%);
border: 1px solid rgb(252 166 250 / 40%);
}SCSS
$mauve: #fca6fa;
$mauve-light: #fed3fd;
$mauve-dark: #7e537d;
.element {
color: $mauve;
background: rgba($mauve, 0.12);
&:hover {
color: darken($mauve, 8%);
}
}LESS
@mauve: #fca6fa;
@mauve-light: lighten(@mauve, 12%);
@mauve-dark: darken(@mauve, 12%);
.element {
color: @mauve;
background: fade(@mauve, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-mauve-50: #feedfe;
--color-mauve-100: #fee4fe;
--color-mauve-200: #fedbfd;
--color-mauve-300: #fdcafc;
--color-mauve-400: #fdb8fb;
--color-mauve-500: #fca6fa;
--color-mauve-600: #e395e1;
--color-mauve-700: #b074af;
--color-mauve-800: #7e537d;
--color-mauve-900: #4c324b;
}
/* Usage */
<div class="bg-mauve-500 text-mauve-50 ring-mauve-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#fca6fa]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$mauve: #fca6fa;
$primary: $mauve;
$theme-colors: map-merge($theme-colors, (
"mauve": $mauve
));
// Generates .text-mauve, .bg-mauve, .btn-mauve
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color mauve = Color(0xFFFCA6FA);
// As a MaterialColor swatch
const MaterialColor mauveSwatch = MaterialColor(0xFFFCA6FA, <int, Color>{
50: Color(0xFFFEEDFE),
100: Color(0xFFFEE4FE),
200: Color(0xFFFEDBFD),
300: Color(0xFFFDCAFC),
400: Color(0xFFFDB8FB),
500: Color(0xFFFCA6FA),
600: Color(0xFFE395E1),
700: Color(0xFFB074AF),
800: Color(0xFF7E537D),
900: Color(0xFF4C324B),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #fca6fa — Mauve
static let mauve = Color(
red: 0.9882,
green: 0.651,
blue: 0.9804
)
}
// UIKit
extension UIColor {
static let mauve = UIColor(
red: 0.9882,
green: 0.651,
blue: 0.9804,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="mauve">#FCA6FA</color>
<color name="mauve_translucent">#80FCA6FA</color>
</resources>
<!-- Jetpack Compose -->
val Mauve = Color(0xFFFCA6FA)JavaScript
export const MAUVE = {
hex: "#fca6fa",
rgb: [252, 166, 250],
hsl: [301, 93, 82],
oklch: "oklch(83.64% 0.1462 327.58)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"mauve": {
"$type": "color",
"$value": "#fca6fa",
"$description": "Mauve — generated by ColorVerse AI"
}
}