Toolumina Extended Palette

Copy-ready color values

HEX#B6DF3A
RGBrgb(182, 223, 58)
HSLhsl(75, 72%, 55%)
HSVhsv(75, 74%, 87%)
CMYK approx.cmyk(18, 0, 74, 13)

Color value table

FormatValueCopy
HEX#B6DF3A
RGBrgb(182, 223, 58)
HSLhsl(75, 72%, 55%)
HSVhsv(75, 74%, 87%)
CMYK approx.cmyk(18, 0, 74, 13)
CSS keywordtoolumina-h75-s72-l55

Contrast and classification

LightLightness1.54:1Contrast with white13.61:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#BDE24E

White 30%
#CCE975

White 70%
#E9F5C4

White 90%
#F8FCEB

Black 10%
#A4C934

Black 30%
#7F9C29

Black 70%
#374311

Black 90%
#121606

Harmony palettes

Complementary

#4920C5
#7556D3

Analogous

#BBDF49
#B6CB4E

Triadic

#DF3AB6
#3AB6DF

Split complementary

#6A48CF
#3C1AA2

Using Toolumina H75 S72 L55

Toolumina H75 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-h75-s72-l55: #b6df3a;
}

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

$toolumina-h75-s72-l55: #b6df3a;

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