Toolumina Extended Palette

Copy-ready color values

HEX#A33333
RGBrgb(163, 51, 51)
HSLhsl(0, 52%, 42%)
HSVhsv(0, 69%, 64%)
CMYK approx.cmyk(0, 69, 69, 36)

Color value table

FormatValueCopy
HEX#A33333
RGBrgb(163, 51, 51)
HSLhsl(0, 52%, 42%)
HSVhsv(0, 69%, 64%)
CMYK approx.cmyk(0, 69, 69, 36)
CSS keywordtoolumina-h0-s52-l42

Contrast and classification

DarkLightness6.82:1Contrast with white3.08:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#AC4747

White 30%
#BF7070

White 70%
#E3C2C2

White 90%
#F6EBEB

Black 10%
#932E2E

Black 30%
#722424

Black 70%
#310F0F

Black 90%
#100505

Harmony palettes

Complementary

#5CCCCC
#83D8D8

Analogous

#963340
#A33333

Triadic

#3333A3
#33A333

Split complementary

#79D5D5
#4BA7A7

Using Toolumina H0 S52 L42

Toolumina H0 S52 L42 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-toolumina-h0-s52-l42: #a33333;
}

.button-primary {
  background: var(--color-toolumina-h0-s52-l42);
  color: #ffffff;
}

$toolumina-h0-s52-l42: #a33333;

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