Toolumina Extended Palette

Copy-ready color values

HEX#8CDF3A
RGBrgb(140, 223, 58)
HSLhsl(90, 72%, 55%)
HSVhsv(90, 74%, 87%)
CMYK approx.cmyk(37, 0, 74, 13)

Color value table

FormatValueCopy
HEX#8CDF3A
RGBrgb(140, 223, 58)
HSLhsl(90, 72%, 55%)
HSVhsv(90, 74%, 87%)
CMYK approx.cmyk(37, 0, 74, 13)
CSS keywordtoolumina-h90-s72-l55

Contrast and classification

LightLightness1.65:1Contrast with white12.73:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#98E24E

White 30%
#AFE975

White 70%
#DDF5C4

White 90%
#F4FCEB

Black 10%
#7EC934

Black 30%
#629C29

Black 70%
#2A4311

Black 90%
#0E1606

Harmony palettes

Complementary

#7320C5
#9556D3

Analogous

#96DF44
#8CCB4E

Triadic

#DF3A8C
#3A8CDF

Split complementary

#8C48CF
#5E1AA2

Using Toolumina H90 S72 L55

Toolumina H90 S72 L55 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-l55: #8cdf3a;
}

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

$toolumina-h90-s72-l55: #8cdf3a;

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