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

Sonic Silver #757575 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

Sonic Silver #757575 pairs with Sonic Silver (#757575) as its complementary color, and Sonic Silver (#757575) and Sonic Silver (#757575) 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.

SONIC SILVER
Analogous

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

SONIC SILVER
Triadic

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

SONIC SILVER
Split-Complementary

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

SONIC SILVER
Tetradic (Square)

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

SONIC SILVER
Monochromatic

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

SONIC SILVER

Shades & Tints

The shade and tint range for Sonic Silver #757575 moves from dark #0D0D0D tones through the base color to lighter #F2F2F2 tones, making it useful for depth, hierarchy, and background variation.

SONIC SILVER

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