Toolumina Extended Palette
Copy-ready color values
HEX
#92B81ERGB
rgb(146, 184, 30)HSL
hsl(75, 72%, 42%)HSV
hsv(75, 84%, 72%)CMYK approx.
cmyk(21, 0, 84, 28)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #92B81E | |
| RGB | rgb(146, 184, 30) | |
| HSL | hsl(75, 72%, 42%) | |
| HSV | hsv(75, 84%, 72%) | |
| CMYK approx. | cmyk(21, 0, 84, 28) | |
| CSS keyword | toolumina-h75-s72-l42 |
Contrast and classification
DarkLightness2.31:1Contrast with white9.10:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#9DBF35
White 30%#B3CD62
White 70%#DEEABC
White 90%#F4F8E9
Black 10%#83A61B
Black 30%#668115
Black 70%#2C3709
Black 90%#0F1203
Harmony palettes
Complementary
#6D47E1#9073E8Analogous
#97B82C#92A630Triadic
#B81E92#1E92B8Split complementary
#8768E6#593AB9Using Toolumina H75 S72 L42
Toolumina H75 S72 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-s72-l42: #92b81e;
}
.button-primary {
background: var(--color-toolumina-h75-s72-l42);
color: #000000;
}
$toolumina-h75-s72-l42: #92b81e;
// Tailwind arbitrary value
class="bg-[#92b81e] text-white"