Toolumina Extended Palette
Copy-ready color values
HEX
#C86E51RGB
rgb(200, 110, 81)HSL
hsl(15, 52%, 55%)HSV
hsv(15, 60%, 78%)CMYK approx.
cmyk(0, 45, 60, 22)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C86E51 | |
| RGB | rgb(200, 110, 81) | |
| HSL | hsl(15, 52%, 55%) | |
| HSV | hsv(15, 60%, 78%) | |
| CMYK approx. | cmyk(0, 45, 60, 22) | |
| CSS keyword | toolumina-h15-s52-l55 |
Contrast and classification
LightLightness3.62:1Contrast with white5.81:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#CE7D62
White 30%#D99A85
White 70%#EFD4CB
White 90%#FAF1EE
Black 10%#B46349
Black 30%#8C4D39
Black 70%#3C2118
Black 90%#140B08
Harmony palettes
Complementary
#3791AE#67ABC1Analogous
#BD6E5F#C86B54Triadic
#6E51C8#51C86ESplit complementary
#5BA5BD#2D778FUsing Toolumina H15 S52 L55
Toolumina H15 S52 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-h15-s52-l55: #c86e51;
}
.button-primary {
background: var(--color-toolumina-h15-s52-l55);
color: #000000;
}
$toolumina-h15-s52-l55: #c86e51;
// Tailwind arbitrary value
class="bg-[#c86e51] text-white"