Toolumina Extended Palette

Copy-ready color values

HEX#3ADFDF
RGBrgb(58, 223, 223)
HSLhsl(180, 72%, 55%)
HSVhsv(180, 74%, 87%)
CMYK approx.cmyk(74, 0, 0, 13)

Color value table

FormatValueCopy
HEX#3ADFDF
RGBrgb(58, 223, 223)
HSLhsl(180, 72%, 55%)
HSVhsv(180, 74%, 87%)
CMYK approx.cmyk(74, 0, 0, 13)
CSS keywordtoolumina-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
#D35656

Analogous

#4EDFCB
#3ADFDF

Triadic

#DFDF3A
#DF3ADF

Split complementary

#CF4848
#A21A1A

Using 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"