Toolumina Extended Palette
Copy-ready color values
HEX
#ACACF1RGB
rgb(172, 172, 241)HSL
hsl(240, 71%, 81%)HSV
hsv(240, 29%, 95%)CMYK approx.
cmyk(29, 29, 0, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #ACACF1 | |
| RGB | rgb(172, 172, 241) | |
| HSL | hsl(240, 71%, 81%) | |
| HSV | hsv(240, 29%, 95%) | |
| CMYK approx. | cmyk(29, 29, 0, 5) | |
| CSS keyword | toolumina-h240-s72-l81 |
Contrast and classification
LightLightness2.12:1Contrast with white9.93:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#B4B4F2
White 30%#C5C5F5
White 70%#E6E6FB
White 90%#F7F7FE
Black 10%#9B9BD9
Black 30%#7878A9
Black 70%#343448
Black 90%#111118
Harmony palettes
Complementary
#53530E#7C7C48Analogous
#ACACE9#ACB4E9Triadic
#ACF1AC#F1ACACSplit complementary
#727239#44440BUsing Toolumina H240 S72 L81
Toolumina H240 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-h240-s72-l81: #acacf1;
}
.button-primary {
background: var(--color-toolumina-h240-s72-l81);
color: #000000;
}
$toolumina-h240-s72-l81: #acacf1;
// Tailwind arbitrary value
class="bg-[#acacf1] text-white"