Toolumina Extended Palette

Copy-ready color values

HEX#D8C383
RGBrgb(216, 195, 131)
HSLhsl(45, 52%, 68%)
HSVhsv(45, 39%, 85%)
CMYK approx.cmyk(0, 10, 39, 15)

Color value table

FormatValueCopy
HEX#D8C383
RGBrgb(216, 195, 131)
HSLhsl(45, 52%, 68%)
HSVhsv(45, 39%, 85%)
CMYK approx.cmyk(0, 10, 39, 15)
CSS keywordtoolumina-h45-s52-l68

Contrast and classification

LightLightness1.74:1Contrast with white12.05:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#DCC98F

White 30%
#E4D5A8

White 70%
#F3EDDA

White 90%
#FBF9F3

Black 10%
#C2B076

Black 30%
#97895C

Black 70%
#413B27

Black 90%
#16140D

Harmony palettes

Complementary

#273C7C
#5B6B9B

Analogous

#D5C38D
#D8BB8B

Triadic

#C383D8
#83D8C3

Split complementary

#4E5F94
#203166

Using Toolumina H45 S52 L68

Toolumina H45 S52 L68 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-l68: #d8c383;
}

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

$toolumina-h45-s52-l68: #d8c383;

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