Toolumina Extended Palette
Copy-ready color values
HEX
#3ADF8CRGB
rgb(58, 223, 140)HSL
hsl(150, 72%, 55%)HSV
hsv(150, 74%, 87%)CMYK approx.
cmyk(74, 0, 37, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3ADF8C | |
| RGB | rgb(58, 223, 140) | |
| HSL | hsl(150, 72%, 55%) | |
| HSV | hsv(150, 74%, 87%) | |
| CMYK approx. | cmyk(74, 0, 37, 13) | |
| CSS keyword | toolumina-h150-s72-l55 |
Contrast and classification
LightLightness1.73:1Contrast with white12.11:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#4EE298
White 30%#75E9AF
White 70%#C4F5DD
White 90%#EBFCF4
Black 10%#34C97E
Black 30%#299C62
Black 70%#11432A
Black 90%#06160E
Harmony palettes
Complementary
#C52073#D35695Analogous
#4EDF82#3AD596Triadic
#DF8C3A#8C3ADFSplit complementary
#CF488C#A21A5EUsing Toolumina H150 S72 L55
Toolumina H150 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-h150-s72-l55: #3adf8c;
}
.button-primary {
background: var(--color-toolumina-h150-s72-l55);
color: #000000;
}
$toolumina-h150-s72-l55: #3adf8c;
// Tailwind arbitrary value
class="bg-[#3adf8c] text-white"