Toolumina Extended Palette
Copy-ready color values
HEX
#87A333RGB
rgb(135, 163, 51)HSL
hsl(75, 52%, 42%)HSV
hsv(75, 69%, 64%)CMYK approx.
cmyk(17, 0, 69, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #87A333 | |
| RGB | rgb(135, 163, 51) | |
| HSL | hsl(75, 52%, 42%) | |
| HSV | hsv(75, 69%, 64%) | |
| CMYK approx. | cmyk(17, 0, 69, 36) | |
| CSS keyword | toolumina-h75-s52-l42 |
Contrast and classification
DarkLightness2.87:1Contrast with white7.32:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#93AC47
White 30%#ABBF70
White 70%#DBE3C2
White 90%#F3F6EB
Black 10%#7A932E
Black 30%#5F7224
Black 70%#29310F
Black 90%#0E1005
Harmony palettes
Complementary
#785CCC#9883D8Analogous
#8AA33D#879640Triadic
#A33387#3387A3Split complementary
#9079D5#624BA7Using Toolumina H75 S52 L42
Toolumina H75 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-h75-s52-l42: #87a333;
}
.button-primary {
background: var(--color-toolumina-h75-s52-l42);
color: #000000;
}
$toolumina-h75-s52-l42: #87a333;
// Tailwind arbitrary value
class="bg-[#87a333] text-white"