Toolumina Extended Palette

Copy-ready color values

HEX#C88C51
RGBrgb(200, 140, 81)
HSLhsl(30, 52%, 55%)
HSVhsv(30, 60%, 78%)
CMYK approx.cmyk(0, 30, 60, 22)

Color value table

FormatValueCopy
HEX#C88C51
RGBrgb(200, 140, 81)
HSLhsl(30, 52%, 55%)
HSVhsv(30, 60%, 78%)
CMYK approx.cmyk(0, 30, 60, 22)
CSS keywordtoolumina-h30-s52-l55

Contrast and classification

LightLightness2.87:1Contrast with white7.33:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#CE9862

White 30%
#D9AF85

White 70%
#EFDDCB

White 90%
#FAF4EE

Black 10%
#B47E49

Black 30%
#8C6239

Black 70%
#3C2A18

Black 90%
#140E08

Harmony palettes

Complementary

#3773AE
#6795C1

Analogous

#C18C5F
#C88558

Triadic

#8C51C8
#51C88C

Split complementary

#5B8CBD
#2D5E8F

Using Toolumina H30 S52 L55

Toolumina H30 S52 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-h30-s52-l55: #c88c51;
}

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

$toolumina-h30-s52-l55: #c88c51;

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