Light Cyan
HEX: #E0FFFF | Modern Palette
Color Specifications
#E0FFFF
224, 255, 255
180°, 100% ,93%
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
Color Palettes
Light Cyan #E0FFFF is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Light Cyan #E0FFFF pairs with #FFE0E0 as its complementary color, and #FFE0FF and Light Yellow (#FFFFE0) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Shades & Tints
The shade and tint range for Light Cyan #E0FFFF moves from dark #001A1A tones through the base color to lighter #E6FFFF tones, making it useful for depth, hierarchy, and background variation.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}