CSS Named Color

Copy-ready color values

HEX#A52A2A
RGBrgb(165, 42, 42)
HSLhsl(0, 59%, 41%)
HSVhsv(0, 75%, 65%)
CMYK approx.cmyk(0, 75, 75, 35)

Color value table

FormatValueCopy
HEX#A52A2A
RGBrgb(165, 42, 42)
HSLhsl(0, 59%, 41%)
HSVhsv(0, 75%, 65%)
CMYK approx.cmyk(0, 75, 75, 35)
CSS keywordbrown

Contrast and classification

DarkLightness7.08:1Contrast with white2.96:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#AE3F3F

White 30%
#C06A6A

White 70%
#E4BFBF

White 90%
#F6EAEA

Black 10%
#952626

Black 30%
#741D1D

Black 70%
#320D0D

Black 90%
#110404

Harmony palettes

Complementary

#5AD5D5
#82DFDF

Analogous

#962A39
#A52A2A

Triadic

#2A2AA5
#2AA52A

Split complementary

#78DDDD
#4AAFAF

Using Brown

Brown 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-brown: #a52a2a;
}

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

$brown: #a52a2a;

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