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
Cyber Grape #58427C 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
Cyber Grape #58427C pairs with #667C42 as its complementary color, and #7C5842 and #427C58 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: #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);
}