Toolumina Extended Palette

Copy-ready color values

HEX#E8E8B5
RGBrgb(232, 232, 181)
HSLhsl(60, 53%, 81%)
HSVhsv(60, 22%, 91%)
CMYK approx.cmyk(0, 0, 22, 9)

Color value table

FormatValueCopy
HEX#E8E8B5
RGBrgb(232, 232, 181)
HSLhsl(60, 53%, 81%)
HSVhsv(60, 22%, 91%)
CMYK approx.cmyk(0, 0, 22, 9)
CSS keywordtoolumina-h60-s52-l81

Contrast and classification

LightLightness1.26:1Contrast with white16.64:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#EAEABC

White 30%
#EFEFCB

White 70%
#F8F8E9

White 90%
#FDFDF8

Black 10%
#D1D1A3

Black 30%
#A2A27F

Black 70%
#464636

Black 90%
#171712

Harmony palettes

Complementary

#17174A
#4F4F75

Analogous

#E8E8BB
#E8E2BB

Triadic

#E8B5E8
#B5E8E8

Split complementary

#41416B
#13133D

Using Toolumina H60 S52 L81

Toolumina H60 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-h60-s52-l81: #e8e8b5;
}

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

$toolumina-h60-s52-l81: #e8e8b5;

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