Cyber Grape

HEX: #58427C | Modern Palette

On White
8.45:1
PASS
On Black
2.49:1
FAIL

Color Specifications

HEX
#58427C
RGB
88, 66, 124
HSL
262°, 46% ,48%
CMYK
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

LIGHT
DARK
System Notification Box

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.

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
 
 
 
 
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
 
 
 
 
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
 
 
 
 
 
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.
 
 
 
 
 

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.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

CYBER GRAPE
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

CYBER GRAPE
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

CYBER GRAPE
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

CYBER GRAPE
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

CYBER GRAPE
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

CYBER GRAPE

Shades & Tints

The shade and tint range for Cyber Grape #58427C moves from dark #0C0911 tones through the base color to lighter #F1EEF6 tones, making it useful for depth, hierarchy, and background variation.

CYBER GRAPE

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #49497C
Protanopia #45457C
Tritanopia #4F4C4C
Achromatopsia #4D4D4D

Frequently Asked Questions

Cyber Grape (#58427C) is a color with RGB(88, 66, 124) and HSL(262.76°, 46.77%, 48.63%).

#58427C pairs strongly with #667C42 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#58427C is suitable for Text, Button, Logo.

#58427C is commonly associated with Romantic.

Similar Named Colors

Dark Slate Blue #483D8B ΔE 6.00
Regalia #522D80 ΔE 6.79
Blue-magenta Violet #553592 ΔE 6.93
Dark Lavender #734F96 ΔE 7.03

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);
}