Toolumina Extended Palette
Copy-ready color values
HEX
#C8AA51RGB
rgb(200, 170, 81)HSL
hsl(45, 52%, 55%)HSV
hsv(45, 60%, 78%)CMYK approx.
cmyk(0, 15, 60, 22)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C8AA51 | |
| RGB | rgb(200, 170, 81) | |
| HSL | hsl(45, 52%, 55%) | |
| HSV | hsv(45, 60%, 78%) | |
| CMYK approx. | cmyk(0, 15, 60, 22) | |
| CSS keyword | toolumina-h45-s52-l55 |
Contrast and classification
LightLightness2.25:1Contrast with white9.32:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#CEB362
White 30%#D9C485
White 70%#EFE6CB
White 90%#FAF7EE
Black 10%#B49949
Black 30%#8C7739
Black 70%#3C3318
Black 90%#141108
Harmony palettes
Complementary
#3755AE#677EC1Analogous
#C4AA5F#C89F5CTriadic
#AA51C8#51C8AASplit complementary
#5B74BD#2D468FUsing Toolumina H45 S52 L55
Toolumina H45 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-h45-s52-l55: #c8aa51;
}
.button-primary {
background: var(--color-toolumina-h45-s52-l55);
color: #000000;
}
$toolumina-h45-s52-l55: #c8aa51;
// Tailwind arbitrary value
class="bg-[#c8aa51] text-white"