Toolumina Extended Palette
Copy-ready color values
HEX
#B86B1ERGB
rgb(184, 107, 30)HSL
hsl(30, 72%, 42%)HSV
hsv(30, 84%, 72%)CMYK approx.
cmyk(0, 42, 84, 28)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #B86B1E | |
| RGB | rgb(184, 107, 30) | |
| HSL | hsl(30, 72%, 42%) | |
| HSV | hsv(30, 84%, 72%) | |
| CMYK approx. | cmyk(0, 42, 84, 28) | |
| CSS keyword | toolumina-h30-s72-l42 |
Contrast and classification
DarkLightness4.07:1Contrast with white5.16:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#BF7A35
White 30%#CD9762
White 70%#EAD3BC
White 90%#F8F0E9
Black 10%#A6601B
Black 30%#814B15
Black 70%#372009
Black 90%#120B03
Harmony palettes
Complementary
#4794E1#73AEE8Analogous
#AF6B30#B86227Triadic
#6B1EB8#1EB86BSplit complementary
#68A7E6#3A79B9Using Toolumina H30 S72 L42
Toolumina H30 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-h30-s72-l42: #b86b1e;
}
.button-primary {
background: var(--color-toolumina-h30-s72-l42);
color: #000000;
}
$toolumina-h30-s72-l42: #b86b1e;
// Tailwind arbitrary value
class="bg-[#b86b1e] text-white"