Ghost White

HEX: #F8F8FF | Modern Palette

On White
1.06:1
FAIL
On Black
19.86:1
PASS

Color Specifications

HEX
#F8F8FF
RGB
248, 248, 255
HSL
240°, 100% ,98%
CMYK
3, 3, 0, 0

About Ghost White

Ghost White (#F8F8FF) is a color with RGB(248, 248, 255) and HSL(240°, 100%, 98.6%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #FFFFF8, which creates strong contrast. Its triadic palette includes #FFF8F8 and #F8FFF8. The name comes from Ghost White (English).

  • HEX: #F8F8FF
  • RGB: 248, 248, 255
  • HSL: 240°, 100%, 98.6%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #FFFFF8
  • Triadic colors: #FFF8F8, #F8FFF8
  • The name comes from Ghost White (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #F8F8FF from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #F8F8FF
Protanopia #F8F8FF
Tritanopia #F7F9F9
Achromatopsia #F9F9F9

Frequently Asked Questions

Ghost White (#F8F8FF) is a color with RGB(248, 248, 255) and HSL(240°, 100%, 98.6%).

#F8F8FF pairs strongly with #FFFFF8 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F8F8FF is suitable for Text, Button, Background and works well with Neon, Cool styles.

#F8F8FF is commonly associated with Playful.

The name Ghost White is linked to Ghost White from English, meaning A very pale, almost translucent white, reminiscent of a ghost..

Name, History & Etymology

Origin Word Ghost White
Meaning A very pale, almost translucent white, reminiscent of a ghost.
Language English
First Recorded Use Late 19th - Early 20th Century (as a specific color name)

History

The concept of 'ghost white' draws from the common cultural depiction of ghosts as pale, ethereal, and often translucent figures. This imagery naturally led to the phrase being used to describe a very light, almost off-white color that lacks strong saturation. While the descriptive phrase has existed for a long time, its standardization as a specific color with a hexadecimal code (#f8f8ff) is a more modern development, largely driven by digital color systems and web standards (like X11 color names). It is one of the many named whites, distinguishing itself from pure white by a very slight hint of blue or grey, giving it a cooler tone.

First Recorded Use

The term 'ghost white' as a descriptive phrase for a very pale white likely predates its formal adoption as a specific color name. Its use as a named color, particularly in technical or artistic contexts, became more common in the late 19th or early 20th century. It was formally recognized and included in color systems like X11 in the late 20th century.

Cultural Associations

The name 'Ghost White' evokes a sense of the supernatural, mystery, and often a delicate, almost fragile quality. It's less stark than pure white and can suggest a subtle coolness or an aged, faded elegance. In design, it's often used when a very light background is desired that isn't quite as harsh as pure white, providing a softer visual experience. Its association with ghosts can also lend it a slightly melancholic or ethereal quality, depending on the context.

Similar Named Colors

Magnolia #F8F4FF ΔE 2.88
Munsell #F2F3F4 ΔE 3.39
White Smoke #F5F5F5 ΔE 3.60
Snow #FFFAFA ΔE 3.74

Code Snippets

/* Background */
.element {
    background-color: #F8F8FF;
}

/* Text */
.element {
    color: #F8F8FF;
}

/* Border */
.element {
    border: 1px solid #F8F8FF;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F8F8FF,
        #FFFFF8
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F8F8FF,
        #FFFFF8
    );
}

// SCSS variable
$ghost-white: #F8F8FF;

// With RGB channels (useful for rgba() usage)
$ghost-white-r: 248;
$ghost-white-g: 248;
$ghost-white-b: 255;

// Usage
.element {
    background-color: $ghost-white;
    color: rgba($ghost-white-r, $ghost-white-g, $ghost-white-b, 0.8);
}