Donkey Brown

HEX: #664C28 | Modern Palette

On White
7.99:1
PASS
On Black
2.63:1
FAIL

Color Specifications

HEX
#664C28
RGB
102, 76, 40
HSL
34°, 60% ,40%
CMYK
0, 25.49, 60.78, 60

About Donkey Brown

Donkey Brown (#664C28) is a color with RGB(102, 76, 40) and HSL(34.84°, 60.78%, 40%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #284266, which creates strong contrast. Its triadic palette includes #28664C and #4C2866.

  • HEX: #664C28
  • RGB: 102, 76, 40
  • HSL: 34.84°, 60.78%, 40%
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #284266
  • Triadic colors: #28664C, #4C2866

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 #664C28 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #555527
Protanopia #4F4F28
Tritanopia #684949
Achromatopsia #515151

Frequently Asked Questions

Donkey Brown (#664C28) is a color with RGB(102, 76, 40) and HSL(34.84°, 60.78%, 40%).

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

#664C28 is suitable for Text, Button, Accent and works well with Warm styles.

Similar Named Colors

Dark Brown #654321 ΔE 4.28
Field Drab #6C541E ΔE 5.45
Brown-nose #6B4423 ΔE 5.64

Code Snippets

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

/* Text */
.element {
    color: #664C28;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #664C28,
        #285CA4
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #664C28,
        #285CA4
    );
}

// SCSS variable
$donkey-brown: #664C28;

// With RGB channels (useful for rgba() usage)
$donkey-brown-r: 102;
$donkey-brown-g: 76;
$donkey-brown-b: 40;

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