Toolumina Extended Palette
Copy-ready color values
HEX
#F1ACF1RGB
rgb(241, 172, 241)HSL
hsl(300, 71%, 81%)HSV
hsv(300, 29%, 95%)CMYK approx.
cmyk(0, 29, 0, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F1ACF1 | |
| RGB | rgb(241, 172, 241) | |
| HSL | hsl(300, 71%, 81%) | |
| HSV | hsv(300, 29%, 95%) | |
| CMYK approx. | cmyk(0, 29, 0, 5) | |
| CSS keyword | toolumina-h300-s72-l81 |
Contrast and classification
LightLightness1.76:1Contrast with white11.91:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#F2B4F2
White 30%#F5C5F5
White 70%#FBE6FB
White 90%#FEF7FE
Black 10%#D99BD9
Black 30%#A978A9
Black 70%#483448
Black 90%#181118
Harmony palettes
Complementary
#0E530E#487C48Analogous
#E9ACF1#F1B4E9Triadic
#ACF1F1#F1F1ACSplit complementary
#397239#0B440BUsing Toolumina H300 S72 L81
Toolumina H300 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-h300-s72-l81: #f1acf1;
}
.button-primary {
background: var(--color-toolumina-h300-s72-l81);
color: #000000;
}
$toolumina-h300-s72-l81: #f1acf1;
// Tailwind arbitrary value
class="bg-[#f1acf1] text-white"