Toolumina Extended Palette

Copy-ready color values

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

Color value table

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

Contrast and classification

LightLightness1.77:1Contrast with white11.84:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#CECE62

White 30%
#D9D985

White 70%
#EFEFCB

White 90%
#FAFAEE

Black 10%
#B4B449

Black 30%
#8C8C39

Black 70%
#3C3C18

Black 90%
#141408

Harmony palettes

Complementary

#3737AE
#6767C1

Analogous

#C8C85F
#C8BA5F

Triadic

#C851C8
#51C8C8

Split complementary

#5B5BBD
#2D2D8F

Using Toolumina H60 S52 L55

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

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

$toolumina-h60-s52-l55: #c8c851;

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