Toolumina Extended Palette

Copy-ready color values

HEX#DF8C3A
RGBrgb(223, 140, 58)
HSLhsl(30, 72%, 55%)
HSVhsv(30, 74%, 87%)
CMYK approx.cmyk(0, 37, 74, 13)

Color value table

FormatValueCopy
HEX#DF8C3A
RGBrgb(223, 140, 58)
HSLhsl(30, 72%, 55%)
HSVhsv(30, 74%, 87%)
CMYK approx.cmyk(0, 37, 74, 13)
CSS keywordtoolumina-h30-s72-l55

Contrast and classification

LightLightness2.64:1Contrast with white7.95:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#E2984E

White 30%
#E9AF75

White 70%
#F5DDC4

White 90%
#FCF4EB

Black 10%
#C97E34

Black 30%
#9C6229

Black 70%
#432A11

Black 90%
#160E06

Harmony palettes

Complementary

#2073C5
#5695D3

Analogous

#D58C4E
#DF8244

Triadic

#8C3ADF
#3ADF8C

Split complementary

#488CCF
#1A5EA2

Using Toolumina H30 S72 L55

Toolumina H30 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-h30-s72-l55: #df8c3a;
}

.button-primary {
  background: var(--color-toolumina-h30-s72-l55);
  color: #000000;
}

$toolumina-h30-s72-l55: #df8c3a;

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