Toolumina Extended Palette
Copy-ready color values
HEX
#D8D883RGB
rgb(216, 216, 131)HSL
hsl(60, 52%, 68%)HSV
hsv(60, 39%, 85%)CMYK approx.
cmyk(0, 0, 39, 15)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #D8D883 | |
| RGB | rgb(216, 216, 131) | |
| HSL | hsl(60, 52%, 68%) | |
| HSV | hsv(60, 39%, 85%) | |
| CMYK approx. | cmyk(0, 0, 39, 15) | |
| CSS keyword | toolumina-h60-s52-l68 |
Contrast and classification
LightLightness1.49:1Contrast with white14.07:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#DCDC8F
White 30%#E4E4A8
White 70%#F3F3DA
White 90%#FBFBF3
Black 10%#C2C276
Black 30%#97975C
Black 70%#414127
Black 90%#16160D
Harmony palettes
Complementary
#27277C#5B5B9BAnalogous
#D8D88D#D8CE8DTriadic
#D883D8#83D8D8Split complementary
#4E4E94#202066Using Toolumina H60 S52 L68
Toolumina H60 S52 L68 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-l68: #d8d883;
}
.button-primary {
background: var(--color-toolumina-h60-s52-l68);
color: #000000;
}
$toolumina-h60-s52-l68: #d8d883;
// Tailwind arbitrary value
class="bg-[#d8d883] text-white"