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
Donkey Brown #664C28 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Donkey Brown #664C28 pairs with #284266 as its complementary color, and #28664C and #4C2866 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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.
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);
}