Toolumina Extended Palette
Copy-ready color values
HEX
#DFDF3ARGB
rgb(223, 223, 58)HSL
hsl(60, 72%, 55%)HSV
hsv(60, 74%, 87%)CMYK approx.
cmyk(0, 0, 74, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DFDF3A | |
| RGB | rgb(223, 223, 58) | |
| HSL | hsl(60, 72%, 55%) | |
| HSV | hsv(60, 74%, 87%) | |
| CMYK approx. | cmyk(0, 0, 74, 13) | |
| CSS keyword | toolumina-h60-s72-l55 |
Contrast and classification
LightLightness1.42:1Contrast with white14.75:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#E2E24E
White 30%#E9E975
White 70%#F5F5C4
White 90%#FCFCEB
Black 10%#C9C934
Black 30%#9C9C29
Black 70%#434311
Black 90%#161606
Harmony palettes
Complementary
#2020C5#5656D3Analogous
#DFDF4E#DFCB4ETriadic
#DF3ADF#3ADFDFSplit complementary
#4848CF#1A1AA2Using Toolumina H60 S72 L55
Toolumina H60 S72 L55 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-s72-l55: #dfdf3a;
}
.button-primary {
background: var(--color-toolumina-h60-s72-l55);
color: #000000;
}
$toolumina-h60-s72-l55: #dfdf3a;
// Tailwind arbitrary value
class="bg-[#dfdf3a] text-white"