Sonic Silver

HEX: #757575 | Modern Palette

On White
4.61:1
PASS
On Black
4.56:1
PASS

Color Specifications

HEX
#757575
RGB
117, 117, 117
HSL
0°, 0% ,45%
CMYK
0, 0, 0, 54.12

About Sonic Silver

Sonic Silver (#757575) is a color with RGB(117, 117, 117) and HSL(0°, 0%, 45.88%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Muted styles and is suitable for Text, Background, Border. Its complementary color is Sonic Silver (#757575), which creates strong contrast. Its triadic palette includes Sonic Silver (#757575) and Sonic Silver (#757575).

  • HEX: #757575
  • RGB: 117, 117, 117
  • HSL: 0°, 0%, 45.88%
  • Mood: Minimal
  • Style: Monochrome, Muted
  • Use case: Text, Background, Border
  • Complementary color: Sonic Silver (#757575)
  • Triadic colors: Sonic Silver (#757575), Sonic Silver (#757575)

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 #757575 from deepest shade to lightest tint.

Color Characteristics

Accessibility Simulation

Deuteranopia #757575
Protanopia #757575
Tritanopia #757575
Achromatopsia #757575

Frequently Asked Questions

Sonic Silver (#757575) is a color with RGB(117, 117, 117) and HSL(0°, 0%, 45.88%).

#757575 pairs strongly with Sonic Silver (#757575) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#757575 is suitable for Text, Background, Border and works well with Monochrome, Muted styles.

#757575 is commonly associated with Minimal.

Similar Named Colors

Gray #808080 ΔE 4.32
Dim Gray #696969 ΔE 4.70
Battleship Grey #848482 ΔE 5.89
Rocket Metallic #8A7F80 ΔE 7.55

Code Snippets

/* Background */
.element {
    background-color: #757575;
}

/* Text */
.element {
    color: #757575;
}

/* Border */
.element {
    border: 1px solid #757575;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #757575,
        #757575
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #757575,
        #757575
    );
}

// SCSS variable
$sonic-silver: #757575;

// With RGB channels (useful for rgba() usage)
$sonic-silver-r: 117;
$sonic-silver-g: 117;
$sonic-silver-b: 117;

// Usage
.element {
    background-color: $sonic-silver;
    color: rgba($sonic-silver-r, $sonic-silver-g, $sonic-silver-b, 0.8);
}