Toolumina Extended Palette

Copy-ready color values

HEX#CFE8B5
RGBrgb(207, 232, 181)
HSLhsl(89, 53%, 81%)
HSVhsv(89, 22%, 91%)
CMYK approx.cmyk(11, 0, 22, 9)

Color value table

FormatValueCopy
HEX#CFE8B5
RGBrgb(207, 232, 181)
HSLhsl(89, 53%, 81%)
HSVhsv(89, 22%, 91%)
CMYK approx.cmyk(11, 0, 22, 9)
CSS keywordtoolumina-h90-s52-l81

Contrast and classification

LightLightness1.32:1Contrast with white15.86:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#D4EABC

White 30%
#DDEFCB

White 70%
#F1F8E9

White 90%
#FAFDF8

Black 10%
#BAD1A3

Black 30%
#91A27F

Black 70%
#3E4636

Black 90%
#151712

Harmony palettes

Complementary

#30174A
#624F75

Analogous

#D2E8B8
#CFE2BB

Triadic

#E8B5CF
#B5CFE8

Split complementary

#55416B
#27133D

Using Toolumina H90 S52 L81

Toolumina H90 S52 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-s52-l81: #cfe8b5;
}

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

$toolumina-h90-s52-l81: #cfe8b5;

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