vibrant
Black and Gray
5.32:1 contrast ratio —
AAVisual Preview
#000000Black
#808080Gray
The quick brown fox
Body text — Black on Gray
Supporting text at reduced opacity
Badge
Reversed — Gray on Black
Inverted combination preview
Contrast Analysis
Contrast Ratio
5.32:1
AAWCAG AA
✓ Pass
Requires 4.5:1
WCAG AA Large
✓ Pass
Requires 3:1
WCAG AAA
✗ Fail
Requires 7:1
Color Values
Black
Foreground (Text)
- HEX
- #000000
- RGB
- rgb(0, 0, 0)
- HSL
- hsl(0, 0%, 0%)
Gray
Background
- HEX
- #808080
- RGB
- rgb(128, 128, 128)
- HSL
- hsl(0, 0%, 50%)
Design Use Cases
- UI components
- Navigation
- Call-to-action buttons
- Form labels
Industry Recommendations
Digital Marketing
Consumer Apps
Retail
Social Media
E-commerce
Color Psychology
The Black tone evokes sophistication, power, and elegance, while Gray brings neutrality, balance, and professionalism. Together, they create a balanced palette suited for compelling visual communication.
Palette Exports
:root {
--color-black: #000000;
--color-gray: #808080;
}
.combo-black-gray {
color: var(--color-black);
background-color: var(--color-gray);
}Quick Snippets
CSS Variables
:root {
--color-black: #000000;
--color-gray: #808080;
}Tailwind CSS
<div class="bg-stone-500 text-black"> Your content here </div>