Toolumina Extended Palette
Copy-ready color values
HEX
#6B33A3RGB
rgb(107, 51, 163)HSL
hsl(270, 52%, 42%)HSV
hsv(270, 69%, 64%)CMYK approx.
cmyk(34, 69, 0, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6B33A3 | |
| RGB | rgb(107, 51, 163) | |
| HSL | hsl(270, 52%, 42%) | |
| HSV | hsv(270, 69%, 64%) | |
| CMYK approx. | cmyk(34, 69, 0, 36) | |
| CSS keyword | toolumina-h270-s52-l42 |
Contrast and classification
DarkLightness7.99:1Contrast with white2.63:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#7A47AC
White 30%#9770BF
White 70%#D3C2E3
White 90%#F0EBF6
Black 10%#602E93
Black 30%#4B2472
Black 70%#200F31
Black 90%#0B0510
Harmony palettes
Complementary
#94CC5C#AED883Analogous
#64339C#6B4096Triadic
#33A36B#A36B33Split complementary
#A7D579#79A74BUsing Toolumina H270 S52 L42
Toolumina H270 S52 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-h270-s52-l42: #6b33a3;
}
.button-primary {
background: var(--color-toolumina-h270-s52-l42);
color: #ffffff;
}
$toolumina-h270-s52-l42: #6b33a3;
// Tailwind arbitrary value
class="bg-[#6b33a3] text-white"