CSS Named Color

Copy-ready color values

HEX#7FFFD4
RGBrgb(127, 255, 212)
HSLhsl(160, 100%, 75%)
HSVhsv(160, 50%, 100%)
CMYK approx.cmyk(50, 0, 17, 0)

Color value table

FormatValueCopy
HEX#7FFFD4
RGBrgb(127, 255, 212)
HSLhsl(160, 100%, 75%)
HSVhsv(160, 50%, 100%)
CMYK approx.cmyk(50, 0, 17, 0)
CSS keywordaquamarine

Contrast and classification

LightLightness1.22:1Contrast with white17.16:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#8CFFD8

White 30%
#A5FFE1

White 70%
#D9FFF2

White 90%
#F2FFFB

Black 10%
#72E6BF

Black 30%
#59B394

Black 70%
#264D40

Black 90%
#0D1A15

Harmony palettes

Complementary

#80002B
#9E3D5E

Analogous

#8EFFCA
#7FFAD9

Triadic

#FFD47F
#D47FFF

Split complementary

#972E51
#690023

Using Aquamarine

Aquamarine 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-aquamarine: #7fffd4;
}

.button-primary {
  background: var(--color-aquamarine);
  color: #000000;
}

$aquamarine: #7fffd4;

// Tailwind arbitrary value
class="bg-[#7fffd4] text-white"