Toolumina Extended Palette
Copy-ready color values
HEX
#3A3ADFRGB
rgb(58, 58, 223)HSL
hsl(240, 72%, 55%)HSV
hsv(240, 74%, 87%)CMYK approx.
cmyk(74, 74, 0, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3A3ADF | |
| RGB | rgb(58, 58, 223) | |
| HSL | hsl(240, 72%, 55%) | |
| HSV | hsv(240, 74%, 87%) | |
| CMYK approx. | cmyk(74, 74, 0, 13) | |
| CSS keyword | toolumina-h240-s72-l55 |
Contrast and classification
LightLightness7.37:1Contrast with white2.85:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#4E4EE2
White 30%#7575E9
White 70%#C4C4F5
White 90%#EBEBFC
Black 10%#3434C9
Black 30%#29299C
Black 70%#111143
Black 90%#060616
Harmony palettes
Complementary
#C5C520#D3D356Analogous
#3A3ACB#3A4ECBTriadic
#3ADF3A#DF3A3ASplit complementary
#CFCF48#A2A21AUsing Toolumina H240 S72 L55
Toolumina H240 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-h240-s72-l55: #3a3adf;
}
.button-primary {
background: var(--color-toolumina-h240-s72-l55);
color: #ffffff;
}
$toolumina-h240-s72-l55: #3a3adf;
// Tailwind arbitrary value
class="bg-[#3a3adf] text-white"