Toolumina Extended Palette

Copy-ready color values

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

Color value table

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

Contrast and classification

LightLightness1.17:1Contrast with white17.92:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F2F2B4

White 30%
#F5F5C5

White 70%
#FBFBE6

White 90%
#FEFEF7

Black 10%
#D9D99B

Black 30%
#A9A978

Black 70%
#484834

Black 90%
#181811

Harmony palettes

Complementary

#0E0E53
#48487C

Analogous

#F1F1B4
#F1E9B4

Triadic

#F1ACF1
#ACF1F1

Split complementary

#393972
#0B0B44

Using Toolumina H60 S72 L81

Toolumina H60 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-h60-s72-l81: #f1f1ac;
}

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

$toolumina-h60-s72-l81: #f1f1ac;

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