#EEECE2 Alabaster
rgb(238, 236, 226)
Color conversions
- HEX
- #EEECE2
- RGB
- rgb(238, 236, 226)
- RGBA
- rgba(238, 236, 226, 1)
- HSL
- hsl(50, 26%, 91%)
- HSV / HSB
- hsv(50, 5%, 93%)
- CMYK
- cmyk(0%, 1%, 5%, 7%)
Wide-gamut spaces
- XYZ
- xyz(78.981, 83.659, 83.924)
- LAB
- lab(93.3 -1.06 5.08)
- LCH
- lch(93.3 5.19 101.78)
- OKLAB
- oklab(94.19% -0.0017 0.0134)
- OKLCH
- oklch(94.19% 0.0135 97.45)
- Nearest name
- Alabaster
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
#eeece21a
#eeece233
#eeece24d
#eeece266
#eeece280
#eeece299
#eeece2b3
#eeece2cc
#eeece2e6
#eeece2ff
Accessibility and contrast
On white
1.18:1
Body text Fail · Large text Fail
On black
17.73:1
Body text AAA · Large text AA
White-on-color contrast is 1.18: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
Optimism that demands careful contrast handling
Yellow is the most luminous hue, which makes it excellent for highlights and terrible for text. Its very high relative luminance means yellow type on white almost never reaches WCAG AA — always pair it with a dark surface or use it as a fill behind dark text.
Sunshine, caution, and intellect in most markets. In parts of Latin America it carries mourning associations, and in Japan it historically signalled courage.
Yellow ochre sits alongside red as one of the earliest pigments. Chrome yellow, beloved by Van Gogh, was toxic and prone to browning — modern replacements are stable but chemically unrelated.
Best as an accent or brand signature rather than a UI primary. When used at scale, anchor it with near-black type and generous white space so it reads confident rather than cheap.
Common industries: Retail, Energy, Children's products, Delivery, Agriculture. Pairs well with near-black for legibility, deep violet for a modern contrast, white for airiness.
Code exports
CSS
:root {
--color-alabaster: #eeece2;
--color-alabaster-rgb: 238 236 226;
--color-alabaster-hsl: 50 26% 91%;
--color-alabaster-oklch: 94.19% 0.0135 97.45;
}
.element {
color: #eeece2;
background-color: hsl(50, 26%, 91%);
border: 1px solid rgb(238 236 226 / 40%);
}SCSS
$alabaster: #eeece2;
$alabaster-light: #f7f6f1;
$alabaster-dark: #777671;
.element {
color: $alabaster;
background: rgba($alabaster, 0.12);
&:hover {
color: darken($alabaster, 8%);
}
}LESS
@alabaster: #eeece2;
@alabaster-light: lighten(@alabaster, 12%);
@alabaster-dark: darken(@alabaster, 12%);
.element {
color: @alabaster;
background: fade(@alabaster, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-alabaster-50: #fcfbf9;
--color-alabaster-100: #faf9f6;
--color-alabaster-200: #f8f7f3;
--color-alabaster-300: #f5f4ee;
--color-alabaster-400: #f1f0e8;
--color-alabaster-500: #eeece2;
--color-alabaster-600: #d6d4cb;
--color-alabaster-700: #a7a59e;
--color-alabaster-800: #777671;
--color-alabaster-900: #474744;
}
/* Usage */
<div class="bg-alabaster-500 text-alabaster-50 ring-alabaster-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#eeece2]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$alabaster: #eeece2;
$primary: $alabaster;
$theme-colors: map-merge($theme-colors, (
"alabaster": $alabaster
));
// Generates .text-alabaster, .bg-alabaster, .btn-alabaster
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color alabaster = Color(0xFFEEECE2);
// As a MaterialColor swatch
const MaterialColor alabasterSwatch = MaterialColor(0xFFEEECE2, <int, Color>{
50: Color(0xFFFCFBF9),
100: Color(0xFFFAF9F6),
200: Color(0xFFF8F7F3),
300: Color(0xFFF5F4EE),
400: Color(0xFFF1F0E8),
500: Color(0xFFEEECE2),
600: Color(0xFFD6D4CB),
700: Color(0xFFA7A59E),
800: Color(0xFF777671),
900: Color(0xFF474744),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #eeece2 — Alabaster
static let alabaster = Color(
red: 0.9333,
green: 0.9255,
blue: 0.8863
)
}
// UIKit
extension UIColor {
static let alabaster = UIColor(
red: 0.9333,
green: 0.9255,
blue: 0.8863,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="alabaster">#EEECE2</color>
<color name="alabaster_translucent">#80EEECE2</color>
</resources>
<!-- Jetpack Compose -->
val Alabaster = Color(0xFFEEECE2)JavaScript
export const ALABASTER = {
hex: "#eeece2",
rgb: [238, 236, 226],
hsl: [50, 26, 91],
oklch: "oklch(94.19% 0.0135 97.45)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"alabaster": {
"$type": "color",
"$value": "#eeece2",
"$description": "Alabaster — generated by ColorVerse AI"
}
}