Solid Pink
HEX: #893843 | Modern Palette
Color Specifications
#893843
137, 56, 67
351°, 59% ,53%
0, 59.12, 51.09, 46.27
About Solid Pink
Solid Pink (#893843) is a color with RGB(137, 56, 67) and HSL(351.85°, 59.12%, 53.73%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #38897E, which creates strong contrast. Its triadic palette includes #438938 and #384389.
- HEX: #893843
- RGB: 137, 56, 67
- HSL: 351.85°, 59.12%, 53.73%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #38897E
- Triadic colors: #438938, #384389
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 #893843 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #893843;
}
/* Text */
.element {
color: #893843;
}
/* Border */
.element {
border: 1px solid #893843;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#893843,
#43CFBC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#893843,
#43CFBC
);
}
// SCSS variable
$solid-pink: #893843;
// With RGB channels (useful for rgba() usage)
$solid-pink-r: 137;
$solid-pink-g: 56;
$solid-pink-b: 67;
// Usage
.element {
background-color: $solid-pink;
color: rgba($solid-pink-r, $solid-pink-g, $solid-pink-b, 0.8);
}