CSS Named Color / Web Safe Color
Copy-ready color values
HEX
#00FFFFRGB
rgb(0, 255, 255)HSL
hsl(180, 100%, 50%)HSV
hsv(180, 100%, 100%)CMYK approx.
cmyk(100, 0, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #00FFFF | |
| RGB | rgb(0, 255, 255) | |
| HSL | hsl(180, 100%, 50%) | |
| HSV | hsv(180, 100%, 100%) | |
| CMYK approx. | cmyk(100, 0, 0, 0) | |
| CSS keyword | aqua |
Contrast and classification
DarkLightness1.25:1Contrast with white16.75:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1AFFFF
White 30%#4DFFFF
White 70%#B3FFFF
White 90%#E6FFFF
Black 10%#00E6E6
Black 30%#00B3B3
Black 70%#004D4D
Black 90%#001A1A
Harmony palettes
Complementary
#FF0000#FF3D3DAnalogous
#1FFFE0#00FFFFTriadic
#FFFF00#FF00FFSplit complementary
#FF2E2E#D10000Using Aqua
Aqua works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-aqua: #00ffff;
}
.button-primary {
background: var(--color-aqua);
color: #000000;
}
$aqua: #00ffff;
// Tailwind arbitrary value
class="bg-[#00ffff] text-white"