CSS Named Color
Copy-ready color values
HEX
#800000RGB
rgb(128, 0, 0)HSL
hsl(0, 100%, 25%)HSV
hsv(0, 100%, 50%)CMYK approx.
cmyk(0, 100, 100, 50)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #800000 | |
| RGB | rgb(128, 0, 0) | |
| HSL | hsl(0, 100%, 25%) | |
| HSV | hsv(0, 100%, 50%) | |
| CMYK approx. | cmyk(0, 100, 100, 50) | |
| CSS keyword | maroon |
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#9EFFFFAnalogous
#71000F#800000Triadic
#000080#008000Split complementary
#96FFFF#68D1D1Using 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"