Toolumina Extended Palette
Copy-ready color values
HEX
#F1E0ACRGB
rgb(241, 224, 172)HSL
hsl(45, 71%, 81%)HSV
hsv(45, 29%, 95%)CMYK approx.
cmyk(0, 7, 29, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F1E0AC | |
| RGB | rgb(241, 224, 172) | |
| HSL | hsl(45, 71%, 81%) | |
| HSV | hsv(45, 29%, 95%) | |
| CMYK approx. | cmyk(0, 7, 29, 5) | |
| CSS keyword | toolumina-h45-s72-l81 |
Contrast and classification
LightLightness1.31:1Contrast with white16.00:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F2E3B4
White 30%#F5E9C5
White 70%#FBF6E6
White 90%#FEFCF7
Black 10%#D9CA9B
Black 30%#A99D78
Black 70%#484334
Black 90%#181611
Harmony palettes
Complementary
#0E1F53#48557CAnalogous
#EFE0B4#F1DAB2Triadic
#E0ACF1#ACF1E0Split complementary
#394772#0B1944Using Toolumina H45 S72 L81
Toolumina H45 S72 L81 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-l81: #f1e0ac;
}
.button-primary {
background: var(--color-toolumina-h45-s72-l81);
color: #000000;
}
$toolumina-h45-s72-l81: #f1e0ac;
// Tailwind arbitrary value
class="bg-[#f1e0ac] text-white"