Dark Pastel Red
HEX: #C23B22 | Modern Palette
Color Specifications
#C23B22
194, 59, 34
9°, 70% ,44%
0, 70, 82, 24
About Dark Pastel Red
Dark Pastel Red (#C23B22) is a color with RGB(194, 59, 34) and HSL(9.4°, 70.2%, 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 #22A9C2, which creates strong contrast. Its triadic palette includes #22C23B and #3B22C2.
- HEX: #C23B22
- RGB: 194, 59, 34
- HSL: 9.4°, 70.2%, 44.7%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #22A9C2
- Triadic colors: #22C23B, #3B22C2
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 #C23B22 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #C23B22;
}
/* Text */
.element {
color: #C23B22;
}
/* Border */
.element {
border: 1px solid #C23B22;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C23B22,
#22A9C2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C23B22,
#22A9C2
);
}
// SCSS variable
$dark-pastel-red: #C23B22;
// With RGB channels (useful for rgba() usage)
$dark-pastel-red-r: 194;
$dark-pastel-red-g: 59;
$dark-pastel-red-b: 34;
// Usage
.element {
background-color: $dark-pastel-red;
color: rgba($dark-pastel-red-r, $dark-pastel-red-g, $dark-pastel-red-b, 0.8);
}