Toolumina Extended Palette
Copy-ready color values
HEX
#BDF1ACRGB
rgb(189, 241, 172)HSL
hsl(105, 71%, 81%)HSV
hsv(105, 29%, 95%)CMYK approx.
cmyk(22, 0, 29, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #BDF1AC | |
| RGB | rgb(189, 241, 172) | |
| HSL | hsl(105, 71%, 81%) | |
| HSV | hsv(105, 29%, 95%) | |
| CMYK approx. | cmyk(22, 0, 29, 5) | |
| CSS keyword | toolumina-h105-s72-l81 |
Contrast and classification
LightLightness1.29:1Contrast with white16.34:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#C4F2B4
White 30%#D1F5C5
White 70%#EBFBE6
White 90%#F8FEF7
Black 10%#AAD99B
Black 30%#84A978
Black 70%#394834
Black 90%#131811
Harmony palettes
Complementary
#420E53#6F487CAnalogous
#C3F1AE#BDE9B4Triadic
#F1ACBD#ACBDF1Split complementary
#643972#360B44Using Toolumina H105 S72 L81
Toolumina H105 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-h105-s72-l81: #bdf1ac;
}
.button-primary {
background: var(--color-toolumina-h105-s72-l81);
color: #000000;
}
$toolumina-h105-s72-l81: #bdf1ac;
// Tailwind arbitrary value
class="bg-[#bdf1ac] text-white"