#FEE2CC Soft Peach
rgb(254, 226, 204)
Color conversions
- HEX
- #FEE2CC
- RGB
- rgb(254, 226, 204)
- RGBA
- rgba(254, 226, 204, 1)
- HSL
- hsl(26, 96%, 90%)
- HSV / HSB
- hsv(26, 20%, 100%)
- CMYK
- cmyk(0%, 11%, 20%, 0%)
Wide-gamut spaces
- XYZ
- xyz(78.968, 79.825, 68.363)
- LAB
- lab(91.61 6.23 14.27)
- LCH
- lch(91.61 15.57 66.43)
- OKLAB
- oklab(93% 0.021 0.037)
- OKLCH
- oklch(93% 0.0426 60.41)
- Nearest name
- Soft Peach
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
#fee2cc1a
#fee2cc33
#fee2cc4d
#fee2cc66
#fee2cc80
#fee2cc99
#fee2ccb3
#fee2cccc
#fee2cce6
#fee2ccff
Accessibility and contrast
On white
1.24:1
Body text Fail · Large text Fail
On black
16.96:1
Body text AAA · Large text AA
White-on-color contrast is 1.24: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
Friendly energy without red's alarm
Orange reads as enthusiastic and affordable. It converts well on calls to action because it is highly visible yet lacks red's threat association. At low saturation it becomes terracotta and shifts from playful to crafted and earthy.
Associated with harvest, warmth, and creativity in Western markets, and with sacred devotion in India where saffron carries religious weight.
The colour had no English name until the fruit arrived in the sixteenth century — before that it was 'geoluread', yellow-red. Modern brand orange owes its ubiquity to inexpensive azo pigments.
Strong for developer tools, logistics, and value-focused consumer brands. Pair with a dark neutral rather than another warm hue to avoid a Halloween reading.
Common industries: Technology, Logistics, Fitness, Construction, Family retail. Pairs well with deep teal for balance, off-black for contrast, sand for a natural palette.
Code exports
CSS
:root {
--color-soft-peach: #fee2cc;
--color-soft-peach-rgb: 254 226 204;
--color-soft-peach-hsl: 26 96% 90%;
--color-soft-peach-oklch: 93% 0.0426 60.41;
}
.element {
color: #fee2cc;
background-color: hsl(26, 96%, 90%);
border: 1px solid rgb(254 226 204 / 40%);
}SCSS
$soft-peach: #fee2cc;
$soft-peach-light: #fff1e6;
$soft-peach-dark: #7f7166;
.element {
color: $soft-peach;
background: rgba($soft-peach, 0.12);
&:hover {
color: darken($soft-peach, 8%);
}
}LESS
@soft-peach: #fee2cc;
@soft-peach-light: lighten(@soft-peach, 12%);
@soft-peach-dark: darken(@soft-peach, 12%);
.element {
color: @soft-peach;
background: fade(@soft-peach, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-soft-peach-50: #fff9f5;
--color-soft-peach-100: #fff6f0;
--color-soft-peach-200: #fff3eb;
--color-soft-peach-300: #feeee0;
--color-soft-peach-400: #fee8d6;
--color-soft-peach-500: #fee2cc;
--color-soft-peach-600: #e5cbb8;
--color-soft-peach-700: #b29e8f;
--color-soft-peach-800: #7f7166;
--color-soft-peach-900: #4c443d;
}
/* Usage */
<div class="bg-soft-peach-500 text-soft-peach-50 ring-soft-peach-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#fee2cc]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$soft-peach: #fee2cc;
$primary: $soft-peach;
$theme-colors: map-merge($theme-colors, (
"soft-peach": $soft-peach
));
// Generates .text-soft-peach, .bg-soft-peach, .btn-soft-peach
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color softPeach = Color(0xFFFEE2CC);
// As a MaterialColor swatch
const MaterialColor softPeachSwatch = MaterialColor(0xFFFEE2CC, <int, Color>{
50: Color(0xFFFFF9F5),
100: Color(0xFFFFF6F0),
200: Color(0xFFFFF3EB),
300: Color(0xFFFEEEE0),
400: Color(0xFFFEE8D6),
500: Color(0xFFFEE2CC),
600: Color(0xFFE5CBB8),
700: Color(0xFFB29E8F),
800: Color(0xFF7F7166),
900: Color(0xFF4C443D),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #fee2cc — Soft Peach
static let softPeach = Color(
red: 0.9961,
green: 0.8863,
blue: 0.8
)
}
// UIKit
extension UIColor {
static let softPeach = UIColor(
red: 0.9961,
green: 0.8863,
blue: 0.8,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="soft_peach">#FEE2CC</color>
<color name="soft_peach_translucent">#80FEE2CC</color>
</resources>
<!-- Jetpack Compose -->
val SoftPeach = Color(0xFFFEE2CC)JavaScript
export const SOFT_PEACH = {
hex: "#fee2cc",
rgb: [254, 226, 204],
hsl: [26, 96, 90],
oklch: "oklch(93% 0.0426 60.41)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"soft-peach": {
"$type": "color",
"$value": "#fee2cc",
"$description": "Soft Peach — generated by ColorVerse AI"
}
}