Toolumina Extended Palette
Copy-ready color values
HEX
#33A3A3RGB
rgb(51, 163, 163)HSL
hsl(180, 52%, 42%)HSV
hsv(180, 69%, 64%)CMYK approx.
cmyk(69, 0, 0, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #33A3A3 | |
| RGB | rgb(51, 163, 163) | |
| HSL | hsl(180, 52%, 42%) | |
| HSV | hsv(180, 69%, 64%) | |
| CMYK approx. | cmyk(69, 0, 0, 36) | |
| CSS keyword | toolumina-h180-s52-l42 |
Contrast and classification
DarkLightness3.04:1Contrast with white6.91:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#47ACAC
White 30%#70BFBF
White 70%#C2E3E3
White 90%#EBF6F6
Black 10%#2E9393
Black 30%#247272
Black 70%#0F3131
Black 90%#051010
Harmony palettes
Complementary
#CC5C5C#D88383Analogous
#40A396#33A3A3Triadic
#A3A333#A333A3Split complementary
#D57979#A74B4BUsing Toolumina H180 S52 L42
Toolumina H180 S52 L42 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-h180-s52-l42: #33a3a3;
}
.button-primary {
background: var(--color-toolumina-h180-s52-l42);
color: #000000;
}
$toolumina-h180-s52-l42: #33a3a3;
// Tailwind arbitrary value
class="bg-[#33a3a3] text-white"