Toolumina Extended Palette
Copy-ready color values
HEX
#8CC851RGB
rgb(140, 200, 81)HSL
hsl(90, 52%, 55%)HSV
hsv(90, 60%, 78%)CMYK approx.
cmyk(30, 0, 60, 22)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #8CC851 | |
| RGB | rgb(140, 200, 81) | |
| HSL | hsl(90, 52%, 55%) | |
| HSV | hsv(90, 60%, 78%) | |
| CMYK approx. | cmyk(30, 0, 60, 22) | |
| CSS keyword | toolumina-h90-s52-l55 |
Contrast and classification
LightLightness2.00:1Contrast with white10.50:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#98CE62
White 30%#AFD985
White 70%#DDEFCB
White 90%#F4FAEE
Black 10%#7EB449
Black 30%#628C39
Black 70%#2A3C18
Black 90%#0E1408
Harmony palettes
Complementary
#7337AE#9567C1Analogous
#93C858#8CBA5FTriadic
#C8518C#518CC8Split complementary
#8C5BBD#5E2D8FUsing Toolumina H90 S52 L55
Toolumina H90 S52 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-h90-s52-l55: #8cc851;
}
.button-primary {
background: var(--color-toolumina-h90-s52-l55);
color: #000000;
}
$toolumina-h90-s52-l55: #8cc851;
// Tailwind arbitrary value
class="bg-[#8cc851] text-white"