Light Cyan

HEX: #E0FFFF | Modern Palette

On White
1.05:1
FAIL
On Black
19.92:1
PASS

Color Specifications

HEX
#E0FFFF
RGB
224, 255, 255
HSL
180°, 100% ,93%
CMYK
12, 0, 0, 0

About Light Cyan

Light Cyan (#E0FFFF) is a color with RGB(224, 255, 255) and HSL(180°, 100%, 93.9%). 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 #FFE0E0, which creates strong contrast. Its triadic palette includes #FFE0FF and Light Yellow (#FFFFE0). The name comes from Light Cyan (English).

  • HEX: #E0FFFF
  • RGB: 224, 255, 255
  • HSL: 180°, 100%, 93.9%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #FFE0E0
  • Triadic colors: #FFE0FF, Light Yellow (#FFFFE0)
  • The name comes from Light Cyan (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 #E0FFFF from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #F7F7FF
Protanopia #FCFCFF
Tritanopia #E0FFFF
Achromatopsia #F9F9F9

Frequently Asked Questions

Light Cyan (#E0FFFF) is a color with RGB(224, 255, 255) and HSL(180°, 100%, 93.9%).

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

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

#E0FFFF is commonly associated with Playful.

The name Light Cyan is linked to Light Cyan from English, meaning A pale shade of cyan..

Name, History & Etymology

Origin Word Light Cyan
Meaning A pale shade of cyan.
Language English
First Recorded Use Late 20th Century

History

Cyan as a color has roots in the printing industry (CMYK color model) and was named after the Greek word 'kyanos' meaning dark blue enamel or lapis lazuli. The 'light' modifier is a common English adjective used to describe a less saturated or paler version of a base color. The specific hexadecimal code #e0ffff for 'Light Cyan' is part of the X11 color names and subsequently adopted into web standards (like CSS Color Module Level 3).

First Recorded Use

The specific color name 'Light Cyan' gained prominence with the advent of digital color systems and web colors. While cyan itself has been recognized as a color for much longer (especially in printing), the precise naming of lighter variations became standardized with computing. For example, X11 color names, which influenced web colors, were established in the late 1980s and early 1990s.

Cultural Associations

In digital contexts, 'Light Cyan' is often associated with a soft, airy, or refreshing feel. It can evoke images of clear skies, shallow tropical waters, or delicate pastels. It's frequently used in web design for backgrounds, accents, or text where a subtle, cool tone is desired. It's less common in traditional art or fashion as a named color, where more general terms like 'pale blue-green' or 'aqua' might be used, but its digital specificity gives it a distinct identity.

Similar Named Colors

Bubbles #E7FEFF ΔE 2.55
Azure Mist/web #F0FFFF ΔE 5.16
Mint Cream #F5FFFA ΔE 7.00
Diamond #B9F2FF ΔE 7.52

Code Snippets

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

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

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

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

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

// SCSS variable
$light-cyan: #E0FFFF;

// With RGB channels (useful for rgba() usage)
$light-cyan-r: 224;
$light-cyan-g: 255;
$light-cyan-b: 255;

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