#FB95FC Violet
rgb(251, 149, 252)
Color conversions
- HEX
- #FB95FC
- RGB
- rgb(251, 149, 252)
- RGBA
- rgba(251, 149, 252, 1)
- HSL
- hsl(299, 94%, 79%)
- HSV / HSB
- hsv(299, 41%, 99%)
- CMYK
- cmyk(0%, 41%, 0%, 1%)
Wide-gamut spaces
- XYZ
- xyz(68.1, 49.036, 97.954)
- LAB
- lab(75.47 53.13 -35.36)
- LCH
- lch(75.47 63.82 326.36)
- OKLAB
- oklab(81.02% 0.1471 -0.0966)
- OKLCH
- oklch(81.02% 0.1759 326.7)
- Nearest name
- Violet
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
#fb95fc1a
#fb95fc33
#fb95fc4d
#fb95fc66
#fb95fc80
#fb95fc99
#fb95fcb3
#fb95fccc
#fb95fce6
#fb95fcff
Accessibility and contrast
On white
1.94:1
Body text Fail · Large text Fail
On black
10.81:1
Body text AAA · Large text AA
White-on-color contrast is 1.94: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-violet: #fb95fc;
--color-violet-rgb: 251 149 252;
--color-violet-hsl: 299 94% 79%;
--color-violet-oklch: 81.02% 0.1759 326.7;
}
.element {
color: #fb95fc;
background-color: hsl(299, 94%, 79%);
border: 1px solid rgb(251 149 252 / 40%);
}SCSS
$violet: #fb95fc;
$violet-light: #fdcafe;
$violet-dark: #7e4b7e;
.element {
color: $violet;
background: rgba($violet, 0.12);
&:hover {
color: darken($violet, 8%);
}
}LESS
@violet: #fb95fc;
@violet-light: lighten(@violet, 12%);
@violet-dark: darken(@violet, 12%);
.element {
color: @violet;
background: fade(@violet, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-violet-50: #feeafe;
--color-violet-100: #fedffe;
--color-violet-200: #fdd5fe;
--color-violet-300: #fdbffd;
--color-violet-400: #fcaafd;
--color-violet-500: #fb95fc;
--color-violet-600: #e286e3;
--color-violet-700: #b068b0;
--color-violet-800: #7e4b7e;
--color-violet-900: #4b2d4c;
}
/* Usage */
<div class="bg-violet-500 text-violet-50 ring-violet-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#fb95fc]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$violet: #fb95fc;
$primary: $violet;
$theme-colors: map-merge($theme-colors, (
"violet": $violet
));
// Generates .text-violet, .bg-violet, .btn-violet
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color violet = Color(0xFFFB95FC);
// As a MaterialColor swatch
const MaterialColor violetSwatch = MaterialColor(0xFFFB95FC, <int, Color>{
50: Color(0xFFFEEAFE),
100: Color(0xFFFEDFFE),
200: Color(0xFFFDD5FE),
300: Color(0xFFFDBFFD),
400: Color(0xFFFCAAFD),
500: Color(0xFFFB95FC),
600: Color(0xFFE286E3),
700: Color(0xFFB068B0),
800: Color(0xFF7E4B7E),
900: Color(0xFF4B2D4C),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #fb95fc — Violet
static let violet = Color(
red: 0.9843,
green: 0.5843,
blue: 0.9882
)
}
// UIKit
extension UIColor {
static let violet = UIColor(
red: 0.9843,
green: 0.5843,
blue: 0.9882,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="violet">#FB95FC</color>
<color name="violet_translucent">#80FB95FC</color>
</resources>
<!-- Jetpack Compose -->
val Violet = Color(0xFFFB95FC)JavaScript
export const VIOLET = {
hex: "#fb95fc",
rgb: [251, 149, 252],
hsl: [299, 94, 79],
oklch: "oklch(81.02% 0.1759 326.7)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"violet": {
"$type": "color",
"$value": "#fb95fc",
"$description": "Violet — generated by ColorVerse AI"
}
}