Peru
HEX: #CD853F | Modern Palette
Color Specifications
#CD853F
205, 133, 63
29°, 69% ,80%
0, 35.12, 69.27, 19.61
About Peru
Peru (#CD853F) is a color with RGB(205, 133, 63) and HSL(29.58°, 69.27%, 80.39%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3F87CD, which creates strong contrast. Its triadic palette includes #3FCD85 and #853FCD. The name comes from Birú (likely) (Quechua (likely)).
- HEX: #CD853F
- RGB: 205, 133, 63
- HSL: 29.58°, 69.27%, 80.39%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #3F87CD
- Triadic colors: #3FCD85, #853FCD
- The name comes from Birú (likely) (Quechua (likely)).
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 #CD853F from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#9E9E39
#8F8F40
#D17F7F
#959595
Frequently Asked Questions
Name, History & Etymology
History
The name 'Peru' was adopted by the Spanish conquistadors to refer to the vast Inca Empire and the lands they conquered. Prior to the Spanish arrival, the Inca Empire was known as Tawantinsuyu. The name 'Peru' became formalized with the establishment of the Viceroyalty of Peru in 1542. Over centuries, the name has remained consistent for the modern nation-state.
First Recorded Use
The name 'Peru' is believed to derive from 'Birú', the name of a local ruler who lived near the Bay of San Miguel in Panama in the early 16th century. His territory was the southernmost part of the 'New World' known to Europeans at the time. When Francisco Pizarro's expeditions went further south, the entire region beyond Panama became known as 'Peru'.
Cultural Associations
The name 'Peru' is deeply intertwined with the history of Spanish colonization and the subsequent formation of the Peruvian nation. While the indigenous name for the Inca Empire, Tawantinsuyu, is recognized and celebrated in cultural and historical contexts, 'Peru' is the universally accepted name for the country. The name evokes images of ancient civilizations, rich biodiversity, and a complex colonial past.
Code Snippets
/* Background */
.element {
background-color: #CD853F;
}
/* Text */
.element {
color: #CD853F;
}
/* Border */
.element {
border: 1px solid #CD853F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CD853F,
#AACDF0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CD853F,
#AACDF0
);
}
// SCSS variable
$peru: #CD853F;
// With RGB channels (useful for rgba() usage)
$peru-r: 205;
$peru-g: 133;
$peru-b: 63;
// Usage
.element {
background-color: $peru;
color: rgba($peru-r, $peru-g, $peru-b, 0.8);
}