Camel
HEX: #C19A6B | Modern Palette
Color Specifications
#C19A6B
193, 154, 107
32°, 41% ,58%
0, 20, 45, 24
About Camel
Camel (#C19A6B) is a color with RGB(193, 154, 107) and HSL(32.8°, 41%, 58.8%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #6B92C1, which creates strong contrast. Its triadic palette includes #6BC19A and #9A6BC1. The name comes from *gamal- (Proto-Semitic).
- HEX: #C19A6B
- RGB: 193, 154, 107
- HSL: 32.8°, 41%, 58.8%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #6B92C1
- Triadic colors: #6BC19A, #9A6BC1
- The name comes from *gamal- (Proto-Semitic).
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 #C19A6B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word for 'camel' has a deep history, tracing back to Proto-Semitic *gamal-. This root is the ancestor of words like Hebrew 'gamal' (גמל), Arabic 'jamal' (جمل), and Aramaic 'gamla'. From Semitic languages, the word entered Greek as 'kamelos' (κάμηλος), likely through Phoenician traders. Latin then adopted it as 'camelus'. From Latin, it spread into various European languages, including Old English 'camel' or 'camell', which evolved into the modern English 'camel'. The consistent root across such a wide range of languages and over millennia highlights the animal's significant role in ancient cultures, particularly in the Middle East and North Africa.
First Recorded Use
c. 2000 BCE (earliest known written forms in Akkadian)
Cultural Associations
Camels have been indispensable to human civilization in arid regions for thousands of years. They are often referred to as 'ships of the desert' due to their ability to traverse vast, waterless expanses, carrying goods and people. They provided milk, meat, wool, and leather, and were crucial for trade routes (like the Silk Road), warfare, and daily life. Their cultural significance is reflected in religious texts (e.g., the Bible and Quran), folklore, and art. The domestication of camels was a pivotal development, enabling the expansion of human activity into previously uninhabitable desert environments.
Code Snippets
/* Background */
.element {
background-color: #C19A6B;
}
/* Text */
.element {
color: #C19A6B;
}
/* Border */
.element {
border: 1px solid #C19A6B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C19A6B,
#6B92C1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C19A6B,
#6B92C1
);
}
// SCSS variable
$camel: #C19A6B;
// With RGB channels (useful for rgba() usage)
$camel-r: 193;
$camel-g: 154;
$camel-b: 107;
// Usage
.element {
background-color: $camel;
color: rgba($camel-r, $camel-g, $camel-b, 0.8);
}