Toolumina Extended Palette
Copy-ready color values
HEX
#6BB81ERGB
rgb(107, 184, 30)HSL
hsl(90, 72%, 42%)HSV
hsv(90, 84%, 72%)CMYK approx.
cmyk(42, 0, 84, 28)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6BB81E | |
| RGB | rgb(107, 184, 30) | |
| HSL | hsl(90, 72%, 42%) | |
| HSV | hsv(90, 84%, 72%) | |
| CMYK approx. | cmyk(42, 0, 84, 28) | |
| CSS keyword | toolumina-h90-s72-l42 |
Contrast and classification
DarkLightness2.47:1Contrast with white8.50:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#7ABF35
White 30%#97CD62
White 70%#D3EABC
White 90%#F0F8E9
Black 10%#60A61B
Black 30%#4B8115
Black 70%#203709
Black 90%#0B1203
Harmony palettes
Complementary
#9447E1#AE73E8Analogous
#74B827#6BA630Triadic
#B81E6B#1E6BB8Split complementary
#A768E6#793AB9Using Toolumina H90 S72 L42
Toolumina H90 S72 L42 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-s72-l42: #6bb81e;
}
.button-primary {
background: var(--color-toolumina-h90-s72-l42);
color: #000000;
}
$toolumina-h90-s72-l42: #6bb81e;
// Tailwind arbitrary value
class="bg-[#6bb81e] text-white"