Toolumina Extended Palette

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#F1CFAC
RGBrgb(241, 207, 172)
HSLhsl(30, 71%, 81%)
HSVhsv(30, 29%, 95%)
CMYK approx.cmyk(0, 14, 29, 5)
CSS keywordtoolumina-h30-s72-l81

Contrast and classification

LightLightness1.47:1Contrast with white14.26:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F2D4B4

White 30%
#F5DDC5

White 70%
#FBF1E6

White 90%
#FEFAF7

Black 10%
#D9BA9B

Black 30%
#A99178

Black 70%
#483E34

Black 90%
#181511

Harmony palettes

Complementary

#0E3053
#48627C

Analogous

#EDCFB4
#F1CBB0

Triadic

#CFACF1
#ACF1CF

Split complementary

#395572
#0B2744

Using Toolumina H30 S72 L81

Toolumina H30 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-h30-s72-l81: #f1cfac;
}

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

$toolumina-h30-s72-l81: #f1cfac;

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