Toolumina Extended Palette

Copy-ready color values

HEX#F1ACAC
RGBrgb(241, 172, 172)
HSLhsl(0, 71%, 81%)
HSVhsv(0, 29%, 95%)
CMYK approx.cmyk(0, 29, 29, 5)

Color value table

FormatValueCopy
HEX#F1ACAC
RGBrgb(241, 172, 172)
HSLhsl(0, 71%, 81%)
HSVhsv(0, 29%, 95%)
CMYK approx.cmyk(0, 29, 29, 5)
CSS keywordtoolumina-h0-s72-l81

Contrast and classification

LightLightness1.87:1Contrast with white11.24:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#F2B4B4

White 30%
#F5C5C5

White 70%
#FBE6E6

White 90%
#FEF7F7

Black 10%
#D99B9B

Black 30%
#A97878

Black 70%
#483434

Black 90%
#181111

Harmony palettes

Complementary

#0E5353
#487C7C

Analogous

#E9ACB4
#F1ACAC

Triadic

#ACACF1
#ACF1AC

Split complementary

#397272
#0B4444

Using Toolumina H0 S72 L81

Toolumina H0 S72 L81 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-l81: #f1acac;
}

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

$toolumina-h0-s72-l81: #f1acac;

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