Toolumina Extended Palette

Copy-ready color values

HEX#633ADF
RGBrgb(99, 58, 223)
HSLhsl(255, 72%, 55%)
HSVhsv(255, 74%, 87%)
CMYK approx.cmyk(56, 74, 0, 13)

Color value table

FormatValueCopy
HEX#633ADF
RGBrgb(99, 58, 223)
HSLhsl(255, 72%, 55%)
HSVhsv(255, 74%, 87%)
CMYK approx.cmyk(56, 74, 0, 13)
CSS keywordtoolumina-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
#B4D356

Analogous

#5E3AD0
#634ECB

Triadic

#3ADF63
#DF633A

Split complementary

#AECF48
#80A21A

Using 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"