Toolumina Extended Palette
Copy-ready color values
HEX
#33A333RGB
rgb(51, 163, 51)HSL
hsl(120, 52%, 42%)HSV
hsv(120, 69%, 64%)CMYK approx.
cmyk(69, 0, 69, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #33A333 | |
| RGB | rgb(51, 163, 51) | |
| HSL | hsl(120, 52%, 42%) | |
| HSV | hsv(120, 69%, 64%) | |
| CMYK approx. | cmyk(69, 0, 69, 36) | |
| CSS keyword | toolumina-h120-s52-l42 |
Contrast and classification
DarkLightness3.27:1Contrast with white6.43:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#47AC47
White 30%#70BF70
White 70%#C2E3C2
White 90%#EBF6EB
Black 10%#2E932E
Black 30%#247224
Black 70%#0F310F
Black 90%#051005
Harmony palettes
Complementary
#CC5CCC#D883D8Analogous
#40A333#339640Triadic
#A33333#3333A3Split complementary
#D579D5#A74BA7Using Toolumina H120 S52 L42
Toolumina H120 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-h120-s52-l42: #33a333;
}
.button-primary {
background: var(--color-toolumina-h120-s52-l42);
color: #000000;
}
$toolumina-h120-s52-l42: #33a333;
// Tailwind arbitrary value
class="bg-[#33a333] text-white"