Meat Brown
HEX: #E5B73B | Modern Palette
Color Specifications
#E5B73B
229, 183, 59
43°, 76% ,56%
0, 20, 74, 10
About Meat Brown
Meat Brown (#E5B73B) is a color with RGB(229, 183, 59) and HSL(43.8°, 76.6%, 56.5%). It is commonly associated with Energetic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #3B69E5, which creates strong contrast. Its triadic palette includes #3BE5B7 and #B73BE5. The name comes from Meat Brown (English).
- HEX: #E5B73B
- RGB: 229, 183, 59
- HSL: 43.8°, 76.6%, 56.5%
- Mood: Energetic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #3B69E5
- Triadic colors: #3BE5B7, #B73BE5
- The name comes from Meat Brown (English).
Live Components
Color Palettes
Meat Brown #E5B73B is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Meat Brown #E5B73B pairs with #3B69E5 as its complementary color, and #3BE5B7 and #B73BE5 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Meat Brown' is a descriptive color name, rather than one with a deep etymological history from ancient languages. It directly refers to the visual appearance of cooked, browned meat. Colors named after food items are common in English (e.g., 'chocolate brown', 'olive green'). The specific hex code #e5b73b is a modern digital representation of this color concept. It's a warm, yellowish-brown, reminiscent of the Maillard reaction on cooked surfaces.
First Recorded Use
The exact first use as a formal color name is difficult to pinpoint without specific historical color dictionaries or paint swatches. However, descriptive use of 'meat brown' would have existed as long as people cooked meat. Its formalization as a color name likely emerged with commercial color palettes.
Cultural Associations
This color evokes feelings of warmth, comfort, and sustenance, often associated with home cooking, hearty meals, and traditional cuisine. It's a common color in food photography and packaging for meat products or savory dishes. In fashion or interior design, it might be used to create an earthy, rustic, or cozy aesthetic.
Code Snippets
/* Background */
.element {
background-color: #E5B73B;
}
/* Text */
.element {
color: #E5B73B;
}
/* Border */
.element {
border: 1px solid #E5B73B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E5B73B,
#3B69E5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E5B73B,
#3B69E5
);
}
// SCSS variable
$meat-brown: #E5B73B;
// With RGB channels (useful for rgba() usage)
$meat-brown-r: 229;
$meat-brown-g: 183;
$meat-brown-b: 59;
// Usage
.element {
background-color: $meat-brown;
color: rgba($meat-brown-r, $meat-brown-g, $meat-brown-b, 0.8);
}