Toolumina Extended Palette
Copy-ready color values
HEX
#B6DF3ARGB
rgb(182, 223, 58)HSL
hsl(75, 72%, 55%)HSV
hsv(75, 74%, 87%)CMYK approx.
cmyk(18, 0, 74, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #B6DF3A | |
| RGB | rgb(182, 223, 58) | |
| HSL | hsl(75, 72%, 55%) | |
| HSV | hsv(75, 74%, 87%) | |
| CMYK approx. | cmyk(18, 0, 74, 13) | |
| CSS keyword | toolumina-h75-s72-l55 |
Contrast and classification
LightLightness1.54:1Contrast with white13.61:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#BDE24E
White 30%#CCE975
White 70%#E9F5C4
White 90%#F8FCEB
Black 10%#A4C934
Black 30%#7F9C29
Black 70%#374311
Black 90%#121606
Harmony palettes
Complementary
#4920C5#7556D3Analogous
#BBDF49#B6CB4ETriadic
#DF3AB6#3AB6DFSplit complementary
#6A48CF#3C1AA2Using Toolumina H75 S72 L55
Toolumina H75 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-h75-s72-l55: #b6df3a;
}
.button-primary {
background: var(--color-toolumina-h75-s72-l55);
color: #000000;
}
$toolumina-h75-s72-l55: #b6df3a;
// Tailwind arbitrary value
class="bg-[#b6df3a] text-white"