Brick Red
HEX: #CB4154 | Modern Palette
Color Specifications
#CB4154
203, 65, 84
351°, 57% ,52%
0, 68, 59, 20
About Brick Red
Brick Red (#CB4154) is a color with RGB(203, 65, 84) and HSL(351.7°, 57%, 52.5%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #41CBB8, which creates strong contrast. Its triadic palette includes #54CB41 and #4154CB. The name comes from Brick Red (English).
- HEX: #CB4154
- RGB: 203, 65, 84
- HSL: 351.7°, 57%, 52.5%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #41CBB8
- Triadic colors: #54CB41, #4154CB
- The name comes from Brick Red (English).
Live Components
Color Palettes
Brick Red #CB4154 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
Brick Red #CB4154 pairs with #41CBB8 as its complementary color, and #54CB41 and #4154CB 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 color itself, representing fired clay, has been present in human artifacts for millennia, from ancient pottery to Roman architecture. As a specific color name, 'brick red' gained currency to describe a particular hue, distinct from other reds or browns. Its usage became common in various industries, including textiles and paints, to denote this earthy, durable shade. The consistency of brick color across regions contributed to its recognition as a distinct color descriptor.
First Recorded Use
The term 'brick red' likely emerged as a descriptive color name in English during the late 18th or early 19th century, coinciding with the widespread use and standardization of brick as a building material.
Cultural Associations
Brick red evokes a sense of warmth, stability, and tradition, often associated with homes, historical buildings, and rustic aesthetics. It is a common color in many architectural styles globally, reflecting its practical origins. The color is also frequently seen in natural pigments and dyes, linking it to earthy and organic themes.
Code Snippets
/* Background */
.element {
background-color: #CB4154;
}
/* Text */
.element {
color: #CB4154;
}
/* Border */
.element {
border: 1px solid #CB4154;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CB4154,
#41CBB8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CB4154,
#41CBB8
);
}
// SCSS variable
$brick-red: #CB4154;
// With RGB channels (useful for rgba() usage)
$brick-red-r: 203;
$brick-red-g: 65;
$brick-red-b: 84;
// Usage
.element {
background-color: $brick-red;
color: rgba($brick-red-r, $brick-red-g, $brick-red-b, 0.8);
}