Toolumina Extended Palette

Copy-ready color values

HEX#B81E1E
RGBrgb(184, 30, 30)
HSLhsl(0, 72%, 42%)
HSVhsv(0, 84%, 72%)
CMYK approx.cmyk(0, 84, 84, 28)

Color value table

FormatValueCopy
HEX#B81E1E
RGBrgb(184, 30, 30)
HSLhsl(0, 72%, 42%)
HSVhsv(0, 84%, 72%)
CMYK approx.cmyk(0, 84, 84, 28)
CSS keywordtoolumina-h0-s72-l42

Contrast and classification

DarkLightness6.48:1Contrast with white3.24:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#BF3535

White 30%
#CD6262

White 70%
#EABCBC

White 90%
#F8E9E9

Black 10%
#A61B1B

Black 30%
#811515

Black 70%
#370909

Black 90%
#120303

Harmony palettes

Complementary

#47E1E1
#73E8E8

Analogous

#A61E30
#B81E1E

Triadic

#1E1EB8
#1EB81E

Split complementary

#68E6E6
#3AB9B9

Using Toolumina H0 S72 L42

Toolumina H0 S72 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-s72-l42: #b81e1e;
}

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

$toolumina-h0-s72-l42: #b81e1e;

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