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

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

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.

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