Cyan color: code #00FFFF
Cyan
#00FFFF
Color codes
- HEX
#00FFFF - RGB
rgb(0, 255, 255) - HSL
hsl(180, 100%, 50%) - HSV
hsv(180, 100%, 100%) - CMYK
cmyk(100%, 0%, 0%, 0%) - LAB
lab(91.1% -48.1 -14.1) - OKLCH
oklch(90.5% 0.155 194.8)
About the color Cyan
Cyan has the HEX code #00FFFF, which corresponds to rgb(0, 255, 255) in the RGB model. On the color wheel its hue sits at 180°, with 100% saturation and 50% lightness (hsl(180, 100%, 50%)).
Because of its hue it reads as a cool color: it tends to feel calm and distant, and it visually “recedes” in a composition.
As a background it calls for dark text: black reaches a 16.74:1 contrast ratio on it, versus 1.25:1 for white.
For print, the approximate conversion is cmyk(100%, 0%, 0%, 0%). Always confirm with your printer’s color profile, because the result depends on paper and ink.
Lighter tints
Darker shades
Color combinations with Cyan
Complementary
#00FFFF · #FF0000
Analogous
#00FF80 · #00FFFF · #0080FF
Triadic
#00FFFF · #FF00FF · #FFFF00
Tetradic
#00FFFF · #8000FF · #FF0000 · #80FF00
Split-complementary
#00FFFF · #FF0080 · #FF8000
Monochromatic
#008080 · #00CCCC · #00FFFF · #4DFFFF · #99FFFF
Cyan with white and black text
How to use it in CSS
:root {
--color-cyan: #00FFFF;
--color-cyan-rgb: 0, 255, 255;
}
.elemento {
background-color: var(--color-cyan);
color: #000000;
}