Catawba

HEX: #703642 | Modern Palette

On White
9.15:1
PASS
On Black
2.30:1
FAIL

Color Specifications

HEX
#703642
RGB
112, 54, 66
HSL
347°, 51% ,43%
CMYK
0, 51.79, 41.07, 56.08

About Catawba

Catawba (#703642) is a color with RGB(112, 54, 66) and HSL(347.59°, 51.79%, 43.92%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #367064, which creates strong contrast. Its triadic palette includes #427036 and #364270. The name comes from Katapaw (Catawba (Siouan language)).

  • HEX: #703642
  • RGB: 112, 54, 66
  • HSL: 347.59°, 51.79%, 43.92%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #367064
  • Triadic colors: #427036, #364270
  • The name comes from Katapaw (Catawba (Siouan language)).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #703642 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #4C4C40
Protanopia #404042
Tritanopia #6F3838
Achromatopsia #484848

Frequently Asked Questions

Catawba (#703642) is a color with RGB(112, 54, 66) and HSL(347.59°, 51.79%, 43.92%).

#703642 pairs strongly with #367064 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#703642 is suitable for Text, Button, Logo and works well with Warm styles.

#703642 is commonly associated with Romantic.

The name Catawba is linked to Katapaw from Catawba (Siouan language), meaning People of the River.

Name, History & Etymology

Origin Word Katapaw
Meaning People of the River
Language Catawba (Siouan language)
First Recorded Use Late 17th Century

History

The term 'Catawba' refers primarily to the Catawba Nation, a federally recognized tribe of Native Americans, and secondarily to the Catawba River, which flows through North Carolina and South Carolina. The Catawba people have a long and rich history in the Piedmont region, predating European contact by thousands of years. Their language, Catawba, is a member of the Siouan language family, though it is now critically endangered. Historically, the Catawba were a powerful and numerous tribe, known for their pottery and their strategic alliances and conflicts with both other Native American tribes and European colonists. Their population was significantly reduced by disease and warfare following European contact. Today, the Catawba Nation maintains its cultural identity and tribal sovereignty.

First Recorded Use

The earliest recorded use of 'Catawba' by Europeans dates to the late 17th century, appearing in colonial records and maps to refer to the indigenous people inhabiting the Catawba River region.

Cultural Associations

The Catawba Nation is renowned for its traditional pottery, a craft passed down through generations, often made without a potter's wheel. Their cultural heritage includes a strong oral tradition, ceremonies, and a deep connection to their ancestral lands along the Catawba River. The Catawba language, though nearly extinct, is the subject of revitalization efforts. The tribe's history is marked by resilience and adaptation in the face of immense challenges.

Similar Named Colors

Wine #722F37 ΔE 3.61
Old Mauve #673147 ΔE 4.75
Deep Coffee #704241 ΔE 5.91
Solid Pink #893843 ΔE 6.06

Code Snippets

/* Background */
.element {
    background-color: #703642;
}

/* Text */
.element {
    color: #703642;
}

/* Border */
.element {
    border: 1px solid #703642;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #703642,
        #36AA92
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #703642,
        #36AA92
    );
}

// SCSS variable
$catawba: #703642;

// With RGB channels (useful for rgba() usage)
$catawba-r: 112;
$catawba-g: 54;
$catawba-b: 66;

// Usage
.element {
    background-color: $catawba;
    color: rgba($catawba-r, $catawba-g, $catawba-b, 0.8);
}