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
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 #C32148 from deepest shade to lightest tint.
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);
}