Toolumina Extended Palette
Copy-ready color values
HEX
#ACBDF1RGB
rgb(172, 189, 241)HSL
hsl(225, 71%, 81%)HSV
hsv(225, 29%, 95%)CMYK approx.
cmyk(29, 22, 0, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #ACBDF1 | |
| RGB | rgb(172, 189, 241) | |
| HSL | hsl(225, 71%, 81%) | |
| HSV | hsv(225, 29%, 95%) | |
| CMYK approx. | cmyk(29, 22, 0, 5) | |
| CSS keyword | toolumina-h225-s72-l81 |
Contrast and classification
LightLightness1.86:1Contrast with white11.30:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#B4C4F2
White 30%#C5D1F5
White 70%#E6EBFB
White 90%#F7F8FE
Black 10%#9BAAD9
Black 30%#7884A9
Black 70%#343948
Black 90%#111318
Harmony palettes
Complementary
#53420E#7C6F48Analogous
#AEBDE9#ACC3EBTriadic
#BDF1AC#F1ACBDSplit complementary
#726439#44360BUsing Toolumina H225 S72 L81
Toolumina H225 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-h225-s72-l81: #acbdf1;
}
.button-primary {
background: var(--color-toolumina-h225-s72-l81);
color: #000000;
}
$toolumina-h225-s72-l81: #acbdf1;
// Tailwind arbitrary value
class="bg-[#acbdf1] text-white"