#EEF3FA Alice Blue

rgb(238, 243, 250)

Color conversions

HEX
#EEF3FA
RGB
rgb(238, 243, 250)
RGBA
rgba(238, 243, 250, 1)
HSL
hsl(215, 55%, 96%)
HSV / HSB
hsv(215, 5%, 98%)
CMYK
cmyk(5%, 3%, 0%, 2%)

Wide-gamut spaces

XYZ
xyz(84.563, 89.18, 103.182)
LAB
lab(95.66 -0.38 -3.94)
LCH
lch(95.66 3.96 264.49)
OKLAB
oklab(96.24% -0.0025 -0.0105)
OKLCH
oklch(96.24% 0.0108 256.7)
Nearest name
Alice Blue

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#eef3fa1a

#eef3fa33

#eef3fa4d

#eef3fa66

#eef3fa80

#eef3fa99

#eef3fab3

#eef3facc

#eef3fae6

#eef3faff

Accessibility and contrast

On white

1.11:1

Body text Fail · Large text Fail

On black

18.84:1

Body text AAA · Large text AA

White-on-color contrast is 1.11: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

The default of trust — and of everything else

Blue lowers perceived risk and is consistently rated as the most trustworthy hue, which is exactly why it saturates finance, enterprise software, and social platforms. Its ubiquity is now its weakness: a blue primary is safe but rarely memorable.

Trust, stability, and competence in Western markets; immortality in parts of East Asia; and protection against the evil eye across the Mediterranean and Middle East.

Ultramarine was ground from lapis lazuli and once cost more than gold, which is why medieval painters reserved it for the Virgin's robes. Synthetic ultramarine in 1826 democratised it almost overnight.

Reliable as a primary in any category that must feel secure. Differentiate by pushing toward an unusual chroma or pairing with an unexpected accent rather than defaulting to blue-plus-gray.

Common industries: Finance, Enterprise software, Insurance, Government, Aviation. Pairs well with warm amber for energy, crisp white for clarity, rose for a contemporary contrast.

Code exports

CSS

:root {
  --color-alice-blue: #eef3fa;
  --color-alice-blue-rgb: 238 243 250;
  --color-alice-blue-hsl: 215 55% 96%;
  --color-alice-blue-oklch: 96.24% 0.0108 256.7;
}

.element {
  color: #eef3fa;
  background-color: hsl(215, 55%, 96%);
  border: 1px solid rgb(238 243 250 / 40%);
}

SCSS

$alice-blue: #eef3fa;
$alice-blue-light: #f7f9fd;
$alice-blue-dark: #777a7d;

.element {
  color: $alice-blue;
  background: rgba($alice-blue, 0.12);

  &:hover {
    color: darken($alice-blue, 8%);
  }
}

LESS

@alice-blue: #eef3fa;
@alice-blue-light: lighten(@alice-blue, 12%);
@alice-blue-dark: darken(@alice-blue, 12%);

.element {
  color: @alice-blue;
  background: fade(@alice-blue, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-alice-blue-50: #fcfdfe;
  --color-alice-blue-100: #fafbfe;
  --color-alice-blue-200: #f8fafd;
  --color-alice-blue-300: #f5f8fc;
  --color-alice-blue-400: #f1f5fb;
  --color-alice-blue-500: #eef3fa;
  --color-alice-blue-600: #d6dbe1;
  --color-alice-blue-700: #a7aaaf;
  --color-alice-blue-800: #777a7d;
  --color-alice-blue-900: #47494b;
}

/* Usage */
<div class="bg-alice-blue-500 text-alice-blue-50 ring-alice-blue-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#eef3fa]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$alice-blue: #eef3fa;
$primary: $alice-blue;

$theme-colors: map-merge($theme-colors, (
  "alice-blue": $alice-blue
));

// Generates .text-alice-blue, .bg-alice-blue, .btn-alice-blue
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color aliceBlue = Color(0xFFEEF3FA);

// As a MaterialColor swatch
const MaterialColor aliceBlueSwatch = MaterialColor(0xFFEEF3FA, <int, Color>{
  50: Color(0xFFFCFDFE),
  100: Color(0xFFFAFBFE),
  200: Color(0xFFF8FAFD),
  300: Color(0xFFF5F8FC),
  400: Color(0xFFF1F5FB),
  500: Color(0xFFEEF3FA),
  600: Color(0xFFD6DBE1),
  700: Color(0xFFA7AAAF),
  800: Color(0xFF777A7D),
  900: Color(0xFF47494B),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #eef3fa — Alice Blue
    static let aliceBlue = Color(
        red: 0.9333,
        green: 0.9529,
        blue: 0.9804
    )
}

// UIKit
extension UIColor {
    static let aliceBlue = UIColor(
        red: 0.9333,
        green: 0.9529,
        blue: 0.9804,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="alice_blue">#EEF3FA</color>
    <color name="alice_blue_translucent">#80EEF3FA</color>
</resources>

<!-- Jetpack Compose -->
val AliceBlue = Color(0xFFEEF3FA)

JavaScript

export const ALICE_BLUE = {
  hex: "#eef3fa",
  rgb: [238, 243, 250],
  hsl: [215, 55, 96],
  oklch: "oklch(96.24% 0.0108 256.7)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "alice-blue": {
    "$type": "color",
    "$value": "#eef3fa",
    "$description": "Alice Blue — generated by ColorVerse AI"
  }
}