CSS Named Color

Copy-ready color values

HEX#800000
RGBrgb(128, 0, 0)
HSLhsl(0, 100%, 25%)
HSVhsv(0, 100%, 50%)
CMYK approx.cmyk(0, 100, 100, 50)

Color value table

FormatValueCopy
HEX#800000
RGBrgb(128, 0, 0)
HSLhsl(0, 100%, 25%)
HSVhsv(0, 100%, 50%)
CMYK approx.cmyk(0, 100, 100, 50)
CSS keywordmaroon

Contrast and classification

DarkLightness10.95:1Contrast with white1.92:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#8D1A1A

White 30%
#A64D4D

White 70%
#D9B3B3

White 90%
#F2E6E6

Black 10%
#730000

Black 30%
#5A0000

Black 70%
#260000

Black 90%
#0D0000

Harmony palettes

Complementary

#7FFFFF
#9EFFFF

Analogous

#71000F
#800000

Triadic

#000080
#008000

Split complementary

#96FFFF
#68D1D1

Using Maroon

Maroon 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-maroon: #800000;
}

.button-primary {
  background: var(--color-maroon);
  color: #ffffff;
}

$maroon: #800000;

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