CSS Named Color
Copy-ready color values
HEX
#A52A2ARGB
rgb(165, 42, 42)HSL
hsl(0, 59%, 41%)HSV
hsv(0, 75%, 65%)CMYK approx.
cmyk(0, 75, 75, 35)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A52A2A | |
| RGB | rgb(165, 42, 42) | |
| HSL | hsl(0, 59%, 41%) | |
| HSV | hsv(0, 75%, 65%) | |
| CMYK approx. | cmyk(0, 75, 75, 35) | |
| CSS keyword | brown |
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#82DFDFAnalogous
#962A39#A52A2ATriadic
#2A2AA5#2AA52ASplit complementary
#78DDDD#4AAFAFUsing 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"