Toolumina Extended Palette
Copy-ready color values
HEX
#633ADFRGB
rgb(99, 58, 223)HSL
hsl(255, 72%, 55%)HSV
hsv(255, 74%, 87%)CMYK approx.
cmyk(56, 74, 0, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #633ADF | |
| RGB | rgb(99, 58, 223) | |
| HSL | hsl(255, 72%, 55%) | |
| HSV | hsv(255, 74%, 87%) | |
| CMYK approx. | cmyk(56, 74, 0, 13) | |
| CSS keyword | toolumina-h255-s72-l55 |
Contrast and classification
LightLightness6.56:1Contrast with white3.20:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#734EE2
White 30%#9275E9
White 70%#D0C4F5
White 90%#EFEBFC
Black 10%#5934C9
Black 30%#45299C
Black 70%#1E1143
Black 90%#0A0616
Harmony palettes
Complementary
#9CC520#B4D356Analogous
#5E3AD0#634ECBTriadic
#3ADF63#DF633ASplit complementary
#AECF48#80A21AUsing Toolumina H255 S72 L55
Toolumina H255 S72 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-s72-l55: #633adf;
}
.button-primary {
background: var(--color-toolumina-h255-s72-l55);
color: #ffffff;
}
$toolumina-h255-s72-l55: #633adf;
// Tailwind arbitrary value
class="bg-[#633adf] text-white"