Toolumina Extended Palette
Copy-ready color values
HEX
#DF3ADFRGB
rgb(223, 58, 223)HSL
hsl(300, 72%, 55%)HSV
hsv(300, 74%, 87%)CMYK approx.
cmyk(0, 74, 0, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DF3ADF | |
| RGB | rgb(223, 58, 223) | |
| HSL | hsl(300, 72%, 55%) | |
| HSV | hsv(300, 74%, 87%) | |
| CMYK approx. | cmyk(0, 74, 0, 13) | |
| CSS keyword | toolumina-h300-s72-l55 |
Contrast and classification
LightLightness3.62:1Contrast with white5.81:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#E24EE2
White 30%#E975E9
White 70%#F5C4F5
White 90%#FCEBFC
Black 10%#C934C9
Black 30%#9C299C
Black 70%#431143
Black 90%#160616
Harmony palettes
Complementary
#20C520#56D356Analogous
#CB3ADF#DF4ECBTriadic
#3ADFDF#DFDF3ASplit complementary
#48CF48#1AA21AUsing Toolumina H300 S72 L55
Toolumina H300 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-h300-s72-l55: #df3adf;
}
.button-primary {
background: var(--color-toolumina-h300-s72-l55);
color: #000000;
}
$toolumina-h300-s72-l55: #df3adf;
// Tailwind arbitrary value
class="bg-[#df3adf] text-white"