Donkey Brown
HEX: #664C28 | Modern Palette
Color Specifications
#664C28
102, 76, 40
34°, 60% ,40%
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
Color Palettes
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.
Frequently Asked Questions
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);
}