Toolumina Extended Palette
Copy-ready color values
HEX
#3ADFDFRGB
rgb(58, 223, 223)HSL
hsl(180, 72%, 55%)HSV
hsv(180, 74%, 87%)CMYK approx.
cmyk(74, 0, 0, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3ADFDF | |
| RGB | rgb(58, 223, 223) | |
| HSL | hsl(180, 72%, 55%) | |
| HSV | hsv(180, 74%, 87%) | |
| CMYK approx. | cmyk(74, 0, 0, 13) | |
| CSS keyword | toolumina-h180-s72-l55 |
Contrast and classification
LightLightness1.64:1Contrast with white12.80:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#4EE2E2
White 30%#75E9E9
White 70%#C4F5F5
White 90%#EBFCFC
Black 10%#34C9C9
Black 30%#299C9C
Black 70%#114343
Black 90%#061616
Harmony palettes
Complementary
#C52020#D35656Analogous
#4EDFCB#3ADFDFTriadic
#DFDF3A#DF3ADFSplit complementary
#CF4848#A21A1AUsing Toolumina H180 S72 L55
Toolumina H180 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-h180-s72-l55: #3adfdf;
}
.button-primary {
background: var(--color-toolumina-h180-s72-l55);
color: #000000;
}
$toolumina-h180-s72-l55: #3adfdf;
// Tailwind arbitrary value
class="bg-[#3adfdf] text-white"