Dark Coral
HEX: #CD5B45 | Modern Palette
Color Specifications
#CD5B45
205, 91, 69
9°, 57% ,53%
0, 56, 66, 20
About Dark Coral
Dark Coral (#CD5B45) is a color with RGB(205, 91, 69) and HSL(9.7°, 57.6%, 53.7%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #45B7CD, which creates strong contrast. Its triadic palette includes #45CD5B and #5B45CD.
- HEX: #CD5B45
- RGB: 205, 91, 69
- HSL: 9.7°, 57.6%, 53.7%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #45B7CD
- Triadic colors: #45CD5B, #5B45CD
Live Components
Color Palettes
Dark Coral #CD5B45 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
Dark Coral #CD5B45 pairs with #45B7CD as its complementary color, and #45CD5B and #5B45CD 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: #CD5B45;
}
/* Text */
.element {
color: #CD5B45;
}
/* Border */
.element {
border: 1px solid #CD5B45;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CD5B45,
#45B7CD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CD5B45,
#45B7CD
);
}
// SCSS variable
$dark-coral: #CD5B45;
// With RGB channels (useful for rgba() usage)
$dark-coral-r: 205;
$dark-coral-g: 91;
$dark-coral-b: 69;
// Usage
.element {
background-color: $dark-coral;
color: rgba($dark-coral-r, $dark-coral-g, $dark-coral-b, 0.8);
}