Toolumina Extended Palette
Copy-ready color values
HEX
#E8CB73RGB
rgb(232, 203, 115)HSL
hsl(45, 72%, 68%)HSV
hsv(45, 50%, 91%)CMYK approx.
cmyk(0, 13, 50, 9)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E8CB73 | |
| RGB | rgb(232, 203, 115) | |
| HSL | hsl(45, 72%, 68%) | |
| HSV | hsv(45, 50%, 91%) | |
| CMYK approx. | cmyk(0, 13, 50, 9) | |
| CSS keyword | toolumina-h45-s72-l68 |
Contrast and classification
LightLightness1.59:1Contrast with white13.22:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#EAD081
White 30%#EFDB9D
White 70%#F8EFD5
White 90%#FDFAF1
Black 10%#D1B768
Black 30%#A28E51
Black 70%#463D23
Black 90%#17140C
Harmony palettes
Complementary
#17348C#4F65A8Analogous
#E5CB81#E8C07ETriadic
#CB73E8#73E8CBSplit complementary
#4159A1#132B73Using Toolumina H45 S72 L68
Toolumina H45 S72 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-h45-s72-l68: #e8cb73;
}
.button-primary {
background: var(--color-toolumina-h45-s72-l68);
color: #000000;
}
$toolumina-h45-s72-l68: #e8cb73;
// Tailwind arbitrary value
class="bg-[#e8cb73] text-white"