Toolumina Extended Palette

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#F1E0AC
RGBrgb(241, 224, 172)
HSLhsl(45, 71%, 81%)
HSVhsv(45, 29%, 95%)
CMYK approx.cmyk(0, 7, 29, 5)
CSS keywordtoolumina-h45-s72-l81

Contrast and classification

LightLightness1.31:1Contrast with white16.00:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F2E3B4

White 30%
#F5E9C5

White 70%
#FBF6E6

White 90%
#FEFCF7

Black 10%
#D9CA9B

Black 30%
#A99D78

Black 70%
#484334

Black 90%
#181611

Harmony palettes

Complementary

#0E1F53
#48557C

Analogous

#EFE0B4
#F1DAB2

Triadic

#E0ACF1
#ACF1E0

Split complementary

#394772
#0B1944

Using Toolumina H45 S72 L81

Toolumina H45 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-h45-s72-l81: #f1e0ac;
}

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

$toolumina-h45-s72-l81: #f1e0ac;

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