Toolumina Extended Palette
Copy-ready color values
HEX
#DF3AB6RGB
rgb(223, 58, 182)HSL
hsl(315, 72%, 55%)HSV
hsv(315, 74%, 87%)CMYK approx.
cmyk(0, 74, 18, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DF3AB6 | |
| RGB | rgb(223, 58, 182) | |
| HSL | hsl(315, 72%, 55%) | |
| HSV | hsv(315, 74%, 87%) | |
| CMYK approx. | cmyk(0, 74, 18, 13) | |
| CSS keyword | toolumina-h315-s72-l55 |
Contrast and classification
LightLightness3.88:1Contrast with white5.42:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#E24EBD
White 30%#E975CC
White 70%#F5C4E9
White 90%#FCEBF8
Black 10%#C934A4
Black 30%#9C297F
Black 70%#431137
Black 90%#160612
Harmony palettes
Complementary
#20C549#56D375Analogous
#CB3ABB#DF49A7Triadic
#3AB6DF#B6DF3ASplit complementary
#48CF6A#1AA23CUsing Toolumina H315 S72 L55
Toolumina H315 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-h315-s72-l55: #df3ab6;
}
.button-primary {
background: var(--color-toolumina-h315-s72-l55);
color: #000000;
}
$toolumina-h315-s72-l55: #df3ab6;
// Tailwind arbitrary value
class="bg-[#df3ab6] text-white"