Toolumina Extended Palette
Copy-ready color values
HEX
#B81EB8RGB
rgb(184, 30, 184)HSL
hsl(300, 72%, 42%)HSV
hsv(300, 84%, 72%)CMYK approx.
cmyk(0, 84, 0, 28)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #B81EB8 | |
| RGB | rgb(184, 30, 184) | |
| HSL | hsl(300, 72%, 42%) | |
| HSV | hsv(300, 84%, 72%) | |
| CMYK approx. | cmyk(0, 84, 0, 28) | |
| CSS keyword | toolumina-h300-s72-l42 |
Contrast and classification
DarkLightness5.36:1Contrast with white3.92:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#BF35BF
White 30%#CD62CD
White 70%#EABCEA
White 90%#F8E9F8
Black 10%#A61BA6
Black 30%#811581
Black 70%#370937
Black 90%#120312
Harmony palettes
Complementary
#47E147#73E873Analogous
#A61EB8#B830A6Triadic
#1EB8B8#B8B81ESplit complementary
#68E668#3AB93AUsing Toolumina H300 S72 L42
Toolumina H300 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-h300-s72-l42: #b81eb8;
}
.button-primary {
background: var(--color-toolumina-h300-s72-l42);
color: #ffffff;
}
$toolumina-h300-s72-l42: #b81eb8;
// Tailwind arbitrary value
class="bg-[#b81eb8] text-white"