Skip to content

CSS named color

LightCyan #E0FFFF

LightCyan (CSS keyword lightcyan) has the hex code #E0FFFF and the RGB value rgb(224, 255, 255): an off-white with a cyan tint.

LightCyan#E0FFFF

A near-white with a cyan tint (#e0ffff), a little more colored than azure. Useful for hover states on cyan-accented tables.

Color codes for LightCyan

Color codes for LightCyan
CSS keywordlightcyan
HEX#E0FFFF
RGBrgb(224, 255, 255)
HSLhsl(180, 100%, 94%)
HWBhwb(180 88% 0%)
OKLCHoklch(97.8% 0.032 196.6)
CMYK (naive, no ICC profile)cmyk(12%, 0%, 0%, 0%)
Decimal14,745,599
Hue familyCyans and teals

Contrast and accessibility

On lightcyan, black text has a contrast ratio of 19.91:1 and passes AAA at any text size; white text reaches 1.05:1.

WCAG 2.2 contrast ratios (success criteria 1.4.3 and 1.4.6: AA needs 4.5:1 for normal text and 3:1 for large text, AAA needs 7:1 and 4.5:1). APCA Lc is the lightness contrast from the APCA-W3 0.0.98G model proposed for WCAG 3; a higher absolute value is more readable, and Lc 75 is its suggested minimum for body text.

Contrast and accessibility
PairRatioAAAA largeAAAAAA largeAPCA Lc
Black text on lightcyan19.91:1PassPassPassPass102.4
White text on lightcyan1.05:1FailFailFailFail0.0
Lightcyan text on white1.05:1FailFailFailFail0.0
Lightcyan text on black19.91:1PassPassPassPass−103.8

Tints and shades

Each step mixes lightcyan with white (tints) or black (shades) in gamma-encoded sRGB, the same result as color-mix(in srgb, lightcyan, white 25%) in CSS.

Tints (mixed with white)

  1. 5%
    #e2ffff
  2. 15%
    #e5ffff
  3. 25%
    #e8ffff
  4. 35%
    #ebffff
  5. 45%
    #eeffff
  6. 55%
    #f1ffff
  7. 65%
    #f4ffff
  8. 75%
    #f7ffff
  9. 85%
    #faffff
  10. 95%
    #fdffff

Shades (mixed with black)

  1. 5%
    #d5f2f2
  2. 15%
    #bed9d9
  3. 25%
    #a8bfbf
  4. 35%
    #92a6a6
  5. 45%
    #7b8c8c
  6. 55%
    #657373
  7. 65%
    #4e5959
  8. 75%
    #384040
  9. 85%
    #222626
  10. 95%
    #0b0d0d

Color harmonies

Rotating the hue in OKLCH while keeping lightness and chroma, lightcyan's complementary color is #FFF0F0 (close to lavenderblush), its analogous colors are #E4FFF3 and #E2FDFF, and its triadic partners are #FFF2FF and #FFF5E0. For text on top, black gives the higher contrast.

Color harmonies
HarmonyRotationColor
Complementary+180°#fff0f0
Analogous−30°, +30°#e4fff3#e2fdff
Triadic+120°, +240°#fff2ff#fff5e0
Split-complementary+150°, +210°#fff0fc#fff2e6

Computed in OKLCH: the hue is rotated by 180° (complementary), ±30° (analogous), ±120° (triadic) and 180° ±30° (split-complementary) while lightness and chroma stay fixed. Results that fall outside sRGB are brought back with the CSS Color 4 gamut mapping algorithm. Because this uses OKLCH, the values differ from tools that rotate hue in HSL, but every color keeps the same perceived lightness.

Warm or cool?

LightCyan is a cool color: its hue is 180° on the HSL wheel, in the green, blue and violet range that is conventionally called cool.

Nearest named and Tailwind colors

Distance is ΔE OK, the Euclidean distance in OKLab multiplied by 100. Values under about 2 are hard to tell apart side by side.

Nearest CSS named colors

Nearest CSS named colors
ColorHEXΔE OK
azure#f0ffff2.0
aliceblue#f0f8ff2.5
mintcream#f5fffa2.6

Nearest Tailwind v4 colors

Nearest Tailwind v4 colors
ColorHEXΔE OK
cyan-50#ecfeff1.5
emerald-50#ecfdf51.8
teal-50#f0fdfa2.0

Code snippets

CSS
.element {
  color: lightcyan;
  background-color: #e0ffff;
  border-color: rgb(224 255 255);
  outline-color: oklch(97.8% 0.032 196.6);
}
Tailwind CSS
<div class="bg-[#e0ffff] text-black">...</div>

/* or register it once in your CSS (Tailwind v4) */
@theme {
  --color-lightcyan: #e0ffff;
}
/* then use bg-lightcyan, text-lightcyan, border-lightcyan */
SwiftUI
import SwiftUI

extension Color {
  static let lightcyan = Color(red: 0.878, green: 1.000, blue: 1.000)
}
Jetpack Compose
import androidx.compose.ui.graphics.Color

val Lightcyan = Color(0xFFE0FFFF)
Flutter
import 'package:flutter/material.dart';

const lightcyan = Color(0xFFE0FFFF);
Android XML
<!-- res/values/colors.xml -->
<color name="lightcyan">#E0FFFF</color>

Frequently asked questions

What is the hex code for lightcyan?
The hex code for lightcyan is #E0FFFF. The same color is rgb(224, 255, 255), hsl(180, 100%, 94%) and oklch(97.8% 0.032 196.6), and in CSS you can also write the keyword lightcyan directly.
Is lightcyan a warm or cool color?
LightCyan is a cool color: its hue is 180° on the HSL wheel, in the green, blue and violet range that is conventionally called cool.
What colors go with lightcyan?
Rotating the hue in OKLCH while keeping lightness and chroma, lightcyan's complementary color is #FFF0F0 (close to lavenderblush), its analogous colors are #E4FFF3 and #E2FDFF, and its triadic partners are #FFF2FF and #FFF5E0. For text on top, black gives the higher contrast.
Can you use white text on lightcyan?
White text on lightcyan has a contrast ratio of 1.05:1, which fails AA even for large text under WCAG 2.2. Black text reaches 19.91:1 and passes both AA and AAA. In APCA terms that is Lc 0.0 for white and Lc 102.4 for black.
What is the RGB value of lightcyan?
LightCyan is rgb(224, 255, 255): red 224, green 255 and blue 255 on the 0 to 255 scale, or 87.8%, 100.0% and 100.0%. As a decimal integer it is 14745599.

Last reviewed by Arielton Oberek.