Bright Maroon
HEX: #C32148 | Modern Palette
Color Specifications
#C32148
195, 33, 72
345°, 71% ,44%
0, 83, 63, 24
About Bright Maroon
Bright Maroon (#C32148) is a color with RGB(195, 33, 72) and HSL(345.6°, 71.1%, 44.7%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #21C39C, which creates strong contrast. Its triadic palette includes #48C321 and #2148C3.
- HEX: #C32148
- RGB: 195, 33, 72
- HSL: 345.6°, 71.1%, 44.7%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #21C39C
- Triadic colors: #48C321, #2148C3
Live Components
Color Palettes
Bright Maroon #C32148 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
Bright Maroon #C32148 pairs with #21C39C as its complementary color, and #48C321 and #2148C3 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #C32148;
}
/* Text */
.element {
color: #C32148;
}
/* Border */
.element {
border: 1px solid #C32148;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C32148,
#21C39C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C32148,
#21C39C
);
}
// SCSS variable
$bright-maroon: #C32148;
// With RGB channels (useful for rgba() usage)
$bright-maroon-r: 195;
$bright-maroon-g: 33;
$bright-maroon-b: 72;
// Usage
.element {
background-color: $bright-maroon;
color: rgba($bright-maroon-r, $bright-maroon-g, $bright-maroon-b, 0.8);
}