Toolumina Extended Palette
Copy-ready color values
HEX
#C8C851RGB
rgb(200, 200, 81)HSL
hsl(60, 52%, 55%)HSV
hsv(60, 60%, 78%)CMYK approx.
cmyk(0, 0, 60, 22)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C8C851 | |
| RGB | rgb(200, 200, 81) | |
| HSL | hsl(60, 52%, 55%) | |
| HSV | hsv(60, 60%, 78%) | |
| CMYK approx. | cmyk(0, 0, 60, 22) | |
| CSS keyword | toolumina-h60-s52-l55 |
Contrast and classification
LightLightness1.77:1Contrast with white11.84:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#CECE62
White 30%#D9D985
White 70%#EFEFCB
White 90%#FAFAEE
Black 10%#B4B449
Black 30%#8C8C39
Black 70%#3C3C18
Black 90%#141408
Harmony palettes
Complementary
#3737AE#6767C1Analogous
#C8C85F#C8BA5FTriadic
#C851C8#51C8C8Split complementary
#5B5BBD#2D2D8FUsing Toolumina H60 S52 L55
Toolumina H60 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-h60-s52-l55: #c8c851;
}
.button-primary {
background: var(--color-toolumina-h60-s52-l55);
color: #000000;
}
$toolumina-h60-s52-l55: #c8c851;
// Tailwind arbitrary value
class="bg-[#c8c851] text-white"