Toolumina Extended Palette
Copy-ready color values
HEX
#A36B33RGB
rgb(163, 107, 51)HSL
hsl(30, 52%, 42%)HSV
hsv(30, 69%, 64%)CMYK approx.
cmyk(0, 34, 69, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A36B33 | |
| RGB | rgb(163, 107, 51) | |
| HSL | hsl(30, 52%, 42%) | |
| HSV | hsv(30, 69%, 64%) | |
| CMYK approx. | cmyk(0, 34, 69, 36) | |
| CSS keyword | toolumina-h30-s52-l42 |
Contrast and classification
DarkLightness4.46:1Contrast with white4.71:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#AC7A47
White 30%#BF9770
White 70%#E3D3C2
White 90%#F6F0EB
Black 10%#93602E
Black 30%#724B24
Black 70%#31200F
Black 90%#100B05
Harmony palettes
Complementary
#5C94CC#83AED8Analogous
#9C6B40#A3643ATriadic
#6B33A3#33A36BSplit complementary
#79A7D5#4B79A7Using Toolumina H30 S52 L42
Toolumina H30 S52 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-h30-s52-l42: #a36b33;
}
.button-primary {
background: var(--color-toolumina-h30-s52-l42);
color: #000000;
}
$toolumina-h30-s52-l42: #a36b33;
// Tailwind arbitrary value
class="bg-[#a36b33] text-white"