Toolumina Extended Palette
Copy-ready color values
HEX
#3ADF3ARGB
rgb(58, 223, 58)HSL
hsl(120, 72%, 55%)HSV
hsv(120, 74%, 87%)CMYK approx.
cmyk(74, 0, 74, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3ADF3A | |
| RGB | rgb(58, 223, 58) | |
| HSL | hsl(120, 72%, 55%) | |
| HSV | hsv(120, 74%, 87%) | |
| CMYK approx. | cmyk(74, 0, 74, 13) | |
| CSS keyword | toolumina-h120-s72-l55 |
Contrast and classification
LightLightness1.78:1Contrast with white11.80:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#4EE24E
White 30%#75E975
White 70%#C4F5C4
White 90%#EBFCEB
Black 10%#34C934
Black 30%#299C29
Black 70%#114311
Black 90%#061606
Harmony palettes
Complementary
#C520C5#D356D3Analogous
#4EDF3A#3ACB4ETriadic
#DF3A3A#3A3ADFSplit complementary
#CF48CF#A21AA2Using Toolumina H120 S72 L55
Toolumina H120 S72 L55 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-s72-l55: #3adf3a;
}
.button-primary {
background: var(--color-toolumina-h120-s72-l55);
color: #000000;
}
$toolumina-h120-s72-l55: #3adf3a;
// Tailwind arbitrary value
class="bg-[#3adf3a] text-white"