Toolumina Extended Palette
Copy-ready color values
HEX
#6E51C8RGB
rgb(110, 81, 200)HSL
hsl(255, 52%, 55%)HSV
hsv(255, 60%, 78%)CMYK approx.
cmyk(45, 60, 0, 22)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6E51C8 | |
| RGB | rgb(110, 81, 200) | |
| HSL | hsl(255, 52%, 55%) | |
| HSV | hsv(255, 60%, 78%) | |
| CMYK approx. | cmyk(45, 60, 0, 22) | |
| CSS keyword | toolumina-h255-s52-l55 |
Contrast and classification
LightLightness5.72:1Contrast with white3.67:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#7D62CE
White 30%#9A85D9
White 70%#D4CBEF
White 90%#F1EEFA
Black 10%#6349B4
Black 30%#4D398C
Black 70%#21183C
Black 90%#0B0814
Harmony palettes
Complementary
#91AE37#ABC167Analogous
#6B51BD#6E5FBATriadic
#51C86E#C86E51Split complementary
#A5BD5B#778F2DUsing Toolumina H255 S52 L55
Toolumina H255 S52 L55 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-h255-s52-l55: #6e51c8;
}
.button-primary {
background: var(--color-toolumina-h255-s52-l55);
color: #ffffff;
}
$toolumina-h255-s52-l55: #6e51c8;
// Tailwind arbitrary value
class="bg-[#6e51c8] text-white"