Sonic Silver
HEX: #757575 | Modern Palette
Color Specifications
#757575
117, 117, 117
0°, 0% ,45%
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
Color Palettes
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
#757575
#757575
#757575
#757575
Frequently Asked Questions
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);
}