Toolumina Extended Palette
Copy-ready color values
HEX
#E0F1ACRGB
rgb(224, 241, 172)HSL
hsl(75, 71%, 81%)HSV
hsv(75, 29%, 95%)CMYK approx.
cmyk(7, 0, 29, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E0F1AC | |
| RGB | rgb(224, 241, 172) | |
| HSL | hsl(75, 71%, 81%) | |
| HSV | hsv(75, 29%, 95%) | |
| CMYK approx. | cmyk(7, 0, 29, 5) | |
| CSS keyword | toolumina-h75-s72-l81 |
Contrast and classification
LightLightness1.21:1Contrast with white17.35:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#E3F2B4
White 30%#E9F5C5
White 70%#F6FBE6
White 90%#FCFEF7
Black 10%#CAD99B
Black 30%#9DA978
Black 70%#434834
Black 90%#161811
Harmony palettes
Complementary
#1F0E53#55487CAnalogous
#E2F1B2#E0E9B4Triadic
#F1ACE0#ACE0F1Split complementary
#473972#190B44Using Toolumina H75 S72 L81
Toolumina H75 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-h75-s72-l81: #e0f1ac;
}
.button-primary {
background: var(--color-toolumina-h75-s72-l81);
color: #000000;
}
$toolumina-h75-s72-l81: #e0f1ac;
// Tailwind arbitrary value
class="bg-[#e0f1ac] text-white"