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
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.
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);
}