Web Safe Color

Copy-ready color values

HEX#663333
RGBrgb(102, 51, 51)
HSLhsl(0, 33%, 30%)
HSVhsv(0, 50%, 40%)
CMYK approx.cmyk(0, 50, 50, 60)

Color value table

FormatValueCopy
HEX#663333
RGBrgb(102, 51, 51)
HSLhsl(0, 33%, 30%)
HSVhsv(0, 50%, 40%)
CMYK approx.cmyk(0, 50, 50, 60)
CSS keyword663333

Contrast and classification

DarkLightness10.07:1Contrast with white2.09:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#754747

White 30%
#947070

White 70%
#D1C2C2

White 90%
#F0EBEB

Black 10%
#5C2E2E

Black 30%
#472424

Black 70%
#1F0F0F

Black 90%
#0A0505

Harmony palettes

Complementary

#99CCCC
#B1D8D8

Analogous

#603339
#663333

Triadic

#333366
#336633

Split complementary

#ABD5D5
#7DA7A7

Using 663333

663333 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-663333: #663333;
}

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

$663333: #663333;

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