Toolumina Extended Palette

Copy-ready color values

HEX#A3A333
RGBrgb(163, 163, 51)
HSLhsl(60, 52%, 42%)
HSVhsv(60, 69%, 64%)
CMYK approx.cmyk(0, 0, 69, 36)

Color value table

FormatValueCopy
HEX#A3A333
RGBrgb(163, 163, 51)
HSLhsl(60, 52%, 42%)
HSVhsv(60, 69%, 64%)
CMYK approx.cmyk(0, 0, 69, 36)
CSS keywordtoolumina-h60-s52-l42

Contrast and classification

DarkLightness2.68:1Contrast with white7.84:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#ACAC47

White 30%
#BFBF70

White 70%
#E3E3C2

White 90%
#F6F6EB

Black 10%
#93932E

Black 30%
#727224

Black 70%
#31310F

Black 90%
#101005

Harmony palettes

Complementary

#5C5CCC
#8383D8

Analogous

#A3A340
#A39640

Triadic

#A333A3
#33A3A3

Split complementary

#7979D5
#4B4BA7

Using Toolumina H60 S52 L42

Toolumina H60 S52 L42 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-l42: #a3a333;
}

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

$toolumina-h60-s52-l42: #a3a333;

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