Toolumina Extended Palette

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#F1ACBD
RGBrgb(241, 172, 189)
HSLhsl(345, 71%, 81%)
HSVhsv(345, 29%, 95%)
CMYK approx.cmyk(0, 29, 22, 5)
CSS keywordtoolumina-h345-s72-l81

Contrast and classification

LightLightness1.85:1Contrast with white11.38:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#F2B4C4

White 30%
#F5C5D1

White 70%
#FBE6EB

White 90%
#FEF7F8

Black 10%
#D99BAA

Black 30%
#A97884

Black 70%
#483439

Black 90%
#181113

Harmony palettes

Complementary

#0E5342
#487C6F

Analogous

#E9ACC3
#F1AEBB

Triadic

#ACBDF1
#BDF1AC

Split complementary

#397264
#0B4436

Using Toolumina H345 S72 L81

Toolumina H345 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-h345-s72-l81: #f1acbd;
}

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

$toolumina-h345-s72-l81: #f1acbd;

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