Toolumina Extended Palette
Copy-ready color values
HEX
#33A34FRGB
rgb(51, 163, 79)HSL
hsl(135, 52%, 42%)HSV
hsv(135, 69%, 64%)CMYK approx.
cmyk(69, 0, 52, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #33A34F | |
| RGB | rgb(51, 163, 79) | |
| HSL | hsl(135, 52%, 42%) | |
| HSV | hsv(135, 69%, 64%) | |
| CMYK approx. | cmyk(69, 0, 52, 36) | |
| CSS keyword | toolumina-h135-s52-l42 |
Contrast and classification
DarkLightness3.23:1Contrast with white6.49:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#47AC61
White 30%#70BF84
White 70%#C2E3CA
White 90%#EBF6ED
Black 10%#2E9347
Black 30%#247237
Black 70%#0F3118
Black 90%#051008
Harmony palettes
Complementary
#CC5CB0#D883C3Analogous
#40A34C#339959Triadic
#A34F33#4F33A3Split complementary
#D579BE#A74B90Using Toolumina H135 S52 L42
Toolumina H135 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-h135-s52-l42: #33a34f;
}
.button-primary {
background: var(--color-toolumina-h135-s52-l42);
color: #000000;
}
$toolumina-h135-s52-l42: #33a34f;
// Tailwind arbitrary value
class="bg-[#33a34f] text-white"