Toolumina Extended Palette
Copy-ready color values
HEX
#F1CFACRGB
rgb(241, 207, 172)HSL
hsl(30, 71%, 81%)HSV
hsv(30, 29%, 95%)CMYK approx.
cmyk(0, 14, 29, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F1CFAC | |
| RGB | rgb(241, 207, 172) | |
| HSL | hsl(30, 71%, 81%) | |
| HSV | hsv(30, 29%, 95%) | |
| CMYK approx. | cmyk(0, 14, 29, 5) | |
| CSS keyword | toolumina-h30-s72-l81 |
Contrast and classification
LightLightness1.47:1Contrast with white14.26:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F2D4B4
White 30%#F5DDC5
White 70%#FBF1E6
White 90%#FEFAF7
Black 10%#D9BA9B
Black 30%#A99178
Black 70%#483E34
Black 90%#181511
Harmony palettes
Complementary
#0E3053#48627CAnalogous
#EDCFB4#F1CBB0Triadic
#CFACF1#ACF1CFSplit complementary
#395572#0B2744Using Toolumina H30 S72 L81
Toolumina H30 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-h30-s72-l81: #f1cfac;
}
.button-primary {
background: var(--color-toolumina-h30-s72-l81);
color: #000000;
}
$toolumina-h30-s72-l81: #f1cfac;
// Tailwind arbitrary value
class="bg-[#f1cfac] text-white"