Toolumina Extended Palette

Copy-ready color values

HEX#C3D883
RGBrgb(195, 216, 131)
HSLhsl(75, 52%, 68%)
HSVhsv(75, 39%, 85%)
CMYK approx.cmyk(10, 0, 39, 15)

Color value table

FormatValueCopy
HEX#C3D883
RGBrgb(195, 216, 131)
HSLhsl(75, 52%, 68%)
HSVhsv(75, 39%, 85%)
CMYK approx.cmyk(10, 0, 39, 15)
CSS keywordtoolumina-h75-s52-l68

Contrast and classification

LightLightness1.56:1Contrast with white13.47:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#C9DC8F

White 30%
#D5E4A8

White 70%
#EDF3DA

White 90%
#F9FBF3

Black 10%
#B0C276

Black 30%
#89975C

Black 70%
#3B4127

Black 90%
#14160D

Harmony palettes

Complementary

#3C277C
#6B5B9B

Analogous

#C6D88B
#C3CE8D

Triadic

#D883C3
#83C3D8

Split complementary

#5F4E94
#312066

Using Toolumina H75 S52 L68

Toolumina H75 S52 L68 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-h75-s52-l68: #c3d883;
}

.button-primary {
  background: var(--color-toolumina-h75-s52-l68);
  color: #000000;
}

$toolumina-h75-s52-l68: #c3d883;

// Tailwind arbitrary value
class="bg-[#c3d883] text-white"