Toolumina Extended Palette

Copy-ready color values

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

Color value table

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

Contrast and classification

LightLightness1.25:1Contrast with white16.83:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#D4F2B4

White 30%
#DDF5C5

White 70%
#F1FBE6

White 90%
#FAFEF7

Black 10%
#BAD99B

Black 30%
#91A978

Black 70%
#3E4834

Black 90%
#151811

Harmony palettes

Complementary

#300E53
#62487C

Analogous

#D3F1B0
#CFE9B4

Triadic

#F1ACCF
#ACCFF1

Split complementary

#553972
#270B44

Using Toolumina H90 S72 L81

Toolumina H90 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-h90-s72-l81: #cff1ac;
}

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

$toolumina-h90-s72-l81: #cff1ac;

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