Toolumina Extended Palette

Copy-ready color values

HEX#E8DBB5
RGBrgb(232, 219, 181)
HSLhsl(45, 53%, 81%)
HSVhsv(45, 22%, 91%)
CMYK approx.cmyk(0, 6, 22, 9)

Color value table

FormatValueCopy
HEX#E8DBB5
RGBrgb(232, 219, 181)
HSLhsl(45, 53%, 81%)
HSVhsv(45, 22%, 91%)
CMYK approx.cmyk(0, 6, 22, 9)
CSS keywordtoolumina-h45-s52-l81

Contrast and classification

LightLightness1.38:1Contrast with white15.23:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#EADFBC

White 30%
#EFE6CB

White 70%
#F8F4E9

White 90%
#FDFBF8

Black 10%
#D1C5A3

Black 30%
#A2997F

Black 70%
#464236

Black 90%
#171612

Harmony palettes

Complementary

#17244A
#4F5975

Analogous

#E6DBBB
#E8D6BA

Triadic

#DBB5E8
#B5E8DB

Split complementary

#414B6B
#131E3D

Using Toolumina H45 S52 L81

Toolumina H45 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-h45-s52-l81: #e8dbb5;
}

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

$toolumina-h45-s52-l81: #e8dbb5;

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