Toolumina Extended Palette
Copy-ready color values
HEX
#9073E8RGB
rgb(144, 115, 232)HSL
hsl(255, 72%, 68%)HSV
hsv(255, 50%, 91%)CMYK approx.
cmyk(38, 50, 0, 9)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9073E8 | |
| RGB | rgb(144, 115, 232) | |
| HSL | hsl(255, 72%, 68%) | |
| HSV | hsv(255, 50%, 91%) | |
| CMYK approx. | cmyk(38, 50, 0, 9) | |
| CSS keyword | toolumina-h255-s72-l68 |
Contrast and classification
LightLightness3.62:1Contrast with white5.80:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#9B81EA
White 30%#B19DEF
White 70%#DED5F8
White 90%#F4F1FD
Black 10%#8268D1
Black 30%#6551A2
Black 70%#2B2346
Black 90%#0E0C17
Harmony palettes
Complementary
#6F8C17#92A84FAnalogous
#8D73DD#9081DATriadic
#73E890#E89073Split complementary
#89A141#5B7313Using Toolumina H255 S72 L68
Toolumina H255 S72 L68 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-l68: #9073e8;
}
.button-primary {
background: var(--color-toolumina-h255-s72-l68);
color: #000000;
}
$toolumina-h255-s72-l68: #9073e8;
// Tailwind arbitrary value
class="bg-[#9073e8] text-white"