Toolumina Extended Palette
Copy-ready color values
HEX
#F1BDACRGB
rgb(241, 189, 172)HSL
hsl(15, 71%, 81%)HSV
hsv(15, 29%, 95%)CMYK approx.
cmyk(0, 22, 29, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F1BDAC | |
| RGB | rgb(241, 189, 172) | |
| HSL | hsl(15, 71%, 81%) | |
| HSV | hsv(15, 29%, 95%) | |
| CMYK approx. | cmyk(0, 22, 29, 5) | |
| CSS keyword | toolumina-h15-s72-l81 |
Contrast and classification
LightLightness1.66:1Contrast with white12.61:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F2C4B4
White 30%#F5D1C5
White 70%#FBEBE6
White 90%#FEF8F7
Black 10%#D9AA9B
Black 30%#A98478
Black 70%#483934
Black 90%#181311
Harmony palettes
Complementary
#0E4253#486F7CAnalogous
#EBBDB4#F1BBAETriadic
#BDACF1#ACF1BDSplit complementary
#396472#0B3644Using Toolumina H15 S72 L81
Toolumina H15 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-h15-s72-l81: #f1bdac;
}
.button-primary {
background: var(--color-toolumina-h15-s72-l81);
color: #000000;
}
$toolumina-h15-s72-l81: #f1bdac;
// Tailwind arbitrary value
class="bg-[#f1bdac] text-white"