Toolumina Extended Palette

Copy-ready color values

HEX#B8B81E
RGBrgb(184, 184, 30)
HSLhsl(60, 72%, 42%)
HSVhsv(60, 84%, 72%)
CMYK approx.cmyk(0, 0, 84, 28)

Color value table

FormatValueCopy
HEX#B8B81E
RGBrgb(184, 184, 30)
HSLhsl(60, 72%, 42%)
HSVhsv(60, 84%, 72%)
CMYK approx.cmyk(0, 0, 84, 28)
CSS keywordtoolumina-h60-s72-l42

Contrast and classification

DarkLightness2.12:1Contrast with white9.91:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#BFBF35

White 30%
#CDCD62

White 70%
#EAEABC

White 90%
#F8F8E9

Black 10%
#A6A61B

Black 30%
#818115

Black 70%
#373709

Black 90%
#121203

Harmony palettes

Complementary

#4747E1
#7373E8

Analogous

#B8B830
#B8A630

Triadic

#B81EB8
#1EB8B8

Split complementary

#6868E6
#3A3AB9

Using Toolumina H60 S72 L42

Toolumina H60 S72 L42 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-l42: #b8b81e;
}

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

$toolumina-h60-s72-l42: #b8b81e;

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