#FEEEFA Lavender Blush
rgb(254, 238, 250)
Color conversions
- HEX
- #FEEEFA
- RGB
- rgb(254, 238, 250)
- RGBA
- rgba(254, 238, 250, 1)
- HSL
- hsl(315, 89%, 96%)
- HSV / HSB
- hsv(315, 6%, 100%)
- CMYK
- cmyk(0%, 6%, 2%, 0%)
Wide-gamut spaces
- XYZ
- xyz(88.7, 89.123, 102.954)
- LAB
- lab(95.63 7.44 -3.83)
- LCH
- lch(95.63 8.37 332.75)
- OKLAB
- oklab(96.52% 0.021 -0.0101)
- OKLCH
- oklch(96.52% 0.0233 334.28)
- Nearest name
- Lavender Blush
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
#feeefa1a
#feeefa33
#feeefa4d
#feeefa66
#feeefa80
#feeefa99
#feeefab3
#feeefacc
#feeefae6
#feeefaff
Accessibility and contrast
On white
1.12:1
Body text Fail · Large text Fail
On black
18.82:1
Body text AAA · Large text AA
White-on-color contrast is 1.12: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-lavender-blush: #feeefa;
--color-lavender-blush-rgb: 254 238 250;
--color-lavender-blush-hsl: 315 89% 96%;
--color-lavender-blush-oklch: 96.52% 0.0233 334.28;
}
.element {
color: #feeefa;
background-color: hsl(315, 89%, 96%);
border: 1px solid rgb(254 238 250 / 40%);
}SCSS
$lavender-blush: #feeefa;
$lavender-blush-light: #fff7fd;
$lavender-blush-dark: #7f777d;
.element {
color: $lavender-blush;
background: rgba($lavender-blush, 0.12);
&:hover {
color: darken($lavender-blush, 8%);
}
}LESS
@lavender-blush: #feeefa;
@lavender-blush-light: lighten(@lavender-blush, 12%);
@lavender-blush-dark: darken(@lavender-blush, 12%);
.element {
color: @lavender-blush;
background: fade(@lavender-blush, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-lavender-blush-50: #fffcfe;
--color-lavender-blush-100: #fffafe;
--color-lavender-blush-200: #fff8fd;
--color-lavender-blush-300: #fef5fc;
--color-lavender-blush-400: #fef1fb;
--color-lavender-blush-500: #feeefa;
--color-lavender-blush-600: #e5d6e1;
--color-lavender-blush-700: #b2a7af;
--color-lavender-blush-800: #7f777d;
--color-lavender-blush-900: #4c474b;
}
/* Usage */
<div class="bg-lavender-blush-500 text-lavender-blush-50 ring-lavender-blush-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#feeefa]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$lavender-blush: #feeefa;
$primary: $lavender-blush;
$theme-colors: map-merge($theme-colors, (
"lavender-blush": $lavender-blush
));
// Generates .text-lavender-blush, .bg-lavender-blush, .btn-lavender-blush
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color lavenderBlush = Color(0xFFFEEEFA);
// As a MaterialColor swatch
const MaterialColor lavenderBlushSwatch = MaterialColor(0xFFFEEEFA, <int, Color>{
50: Color(0xFFFFFCFE),
100: Color(0xFFFFFAFE),
200: Color(0xFFFFF8FD),
300: Color(0xFFFEF5FC),
400: Color(0xFFFEF1FB),
500: Color(0xFFFEEEFA),
600: Color(0xFFE5D6E1),
700: Color(0xFFB2A7AF),
800: Color(0xFF7F777D),
900: Color(0xFF4C474B),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #feeefa — Lavender Blush
static let lavenderBlush = Color(
red: 0.9961,
green: 0.9333,
blue: 0.9804
)
}
// UIKit
extension UIColor {
static let lavenderBlush = UIColor(
red: 0.9961,
green: 0.9333,
blue: 0.9804,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="lavender_blush">#FEEEFA</color>
<color name="lavender_blush_translucent">#80FEEEFA</color>
</resources>
<!-- Jetpack Compose -->
val LavenderBlush = Color(0xFFFEEEFA)JavaScript
export const LAVENDER_BLUSH = {
hex: "#feeefa",
rgb: [254, 238, 250],
hsl: [315, 89, 96],
oklch: "oklch(96.52% 0.0233 334.28)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"lavender-blush": {
"$type": "color",
"$value": "#feeefa",
"$description": "Lavender Blush — generated by ColorVerse AI"
}
}