Toolumina Extended Palette
Copy-ready color values
HEX
#B81E1ERGB
rgb(184, 30, 30)HSL
hsl(0, 72%, 42%)HSV
hsv(0, 84%, 72%)CMYK approx.
cmyk(0, 84, 84, 28)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #B81E1E | |
| RGB | rgb(184, 30, 30) | |
| HSL | hsl(0, 72%, 42%) | |
| HSV | hsv(0, 84%, 72%) | |
| CMYK approx. | cmyk(0, 84, 84, 28) | |
| CSS keyword | toolumina-h0-s72-l42 |
Contrast and classification
DarkLightness6.48:1Contrast with white3.24:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#BF3535
White 30%#CD6262
White 70%#EABCBC
White 90%#F8E9E9
Black 10%#A61B1B
Black 30%#811515
Black 70%#370909
Black 90%#120303
Harmony palettes
Complementary
#47E1E1#73E8E8Analogous
#A61E30#B81E1ETriadic
#1E1EB8#1EB81ESplit complementary
#68E6E6#3AB9B9Using Toolumina H0 S72 L42
Toolumina H0 S72 L42 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-h0-s72-l42: #b81e1e;
}
.button-primary {
background: var(--color-toolumina-h0-s72-l42);
color: #ffffff;
}
$toolumina-h0-s72-l42: #b81e1e;
// Tailwind arbitrary value
class="bg-[#b81e1e] text-white"