Cyber Grape
HEX: #58427C | Modern Palette
Color Specifications
#58427C
88, 66, 124
262°, 46% ,48%
29.03, 46.77, 0, 51.37
About Cyber Grape
Cyber Grape (#58427C) is a color with RGB(88, 66, 124) and HSL(262.76°, 46.77%, 48.63%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #667C42, which creates strong contrast. Its triadic palette includes #7C5842 and #427C58.
- HEX: #58427C
- RGB: 88, 66, 124
- HSL: 262.76°, 46.77%, 48.63%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #667C42
- Triadic colors: #7C5842, #427C58
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 #58427C from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #58427C;
}
/* Text */
.element {
color: #58427C;
}
/* Border */
.element {
border: 1px solid #58427C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#58427C,
#8AB642
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#58427C,
#8AB642
);
}
// SCSS variable
$cyber-grape: #58427C;
// With RGB channels (useful for rgba() usage)
$cyber-grape-r: 88;
$cyber-grape-g: 66;
$cyber-grape-b: 124;
// Usage
.element {
background-color: $cyber-grape;
color: rgba($cyber-grape-r, $cyber-grape-g, $cyber-grape-b, 0.8);
}