Toolumina Extended Palette
Copy-ready color values
HEX
#DF633ARGB
rgb(223, 99, 58)HSL
hsl(15, 72%, 55%)HSV
hsv(15, 74%, 87%)CMYK approx.
cmyk(0, 56, 74, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DF633A | |
| RGB | rgb(223, 99, 58) | |
| HSL | hsl(15, 72%, 55%) | |
| HSV | hsv(15, 74%, 87%) | |
| CMYK approx. | cmyk(0, 56, 74, 13) | |
| CSS keyword | toolumina-h15-s72-l55 |
Contrast and classification
LightLightness3.51:1Contrast with white5.98:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#E2734E
White 30%#E99275
White 70%#F5D0C4
White 90%#FCEFEB
Black 10%#C95934
Black 30%#9C4529
Black 70%#431E11
Black 90%#160A06
Harmony palettes
Complementary
#209CC5#56B4D3Analogous
#D0634E#DF5E3FTriadic
#633ADF#3ADF63Split complementary
#48AECF#1A80A2Using Toolumina H15 S72 L55
Toolumina H15 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-h15-s72-l55: #df633a;
}
.button-primary {
background: var(--color-toolumina-h15-s72-l55);
color: #000000;
}
$toolumina-h15-s72-l55: #df633a;
// Tailwind arbitrary value
class="bg-[#df633a] text-white"