Toolumina Extended Palette
Copy-ready color values
HEX
#ACF1ACRGB
rgb(172, 241, 172)HSL
hsl(120, 71%, 81%)HSV
hsv(120, 29%, 95%)CMYK approx.
cmyk(29, 0, 29, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #ACF1AC | |
| RGB | rgb(172, 241, 172) | |
| HSL | hsl(120, 71%, 81%) | |
| HSV | hsv(120, 29%, 95%) | |
| CMYK approx. | cmyk(29, 0, 29, 5) | |
| CSS keyword | toolumina-h120-s72-l81 |
Contrast and classification
LightLightness1.32:1Contrast with white15.93:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#B4F2B4
White 30%#C5F5C5
White 70%#E6FBE6
White 90%#F7FEF7
Black 10%#9BD99B
Black 30%#78A978
Black 70%#344834
Black 90%#111811
Harmony palettes
Complementary
#530E53#7C487CAnalogous
#B4F1AC#ACE9B4Triadic
#F1ACAC#ACACF1Split complementary
#723972#440B44Using Toolumina H120 S72 L81
Toolumina H120 S72 L81 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-l81: #acf1ac;
}
.button-primary {
background: var(--color-toolumina-h120-s72-l81);
color: #000000;
}
$toolumina-h120-s72-l81: #acf1ac;
// Tailwind arbitrary value
class="bg-[#acf1ac] text-white"