#ABB2BD Dark Gray
rgb(171, 178, 189)
Color conversions
- HEX
- #ABB2BD
- RGB
- rgb(171, 178, 189)
- RGBA
- rgba(171, 178, 189, 1)
- HSL
- hsl(217, 12%, 71%)
- HSV / HSB
- hsv(217, 10%, 74%)
- CMYK
- cmyk(10%, 6%, 0%, 26%)
Wide-gamut spaces
- XYZ
- xyz(41.898, 44.172, 54.453)
- LAB
- lab(72.34 -0.26 -6.43)
- LCH
- lch(72.34 6.44 267.68)
- OKLAB
- oklab(76.14% -0.0032 -0.0173)
- OKLCH
- oklch(76.14% 0.0176 259.42)
- Nearest name
- Dark Gray
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#abb2bd1a
#abb2bd33
#abb2bd4d
#abb2bd66
#abb2bd80
#abb2bd99
#abb2bdb3
#abb2bdcc
#abb2bde6
#abb2bdff
Accessibility and contrast
On white
2.14:1
Body text Fail · Large text Fail
On black
9.83:1
Body text AAA · Large text AA
White-on-color contrast is 2.14:1.
Color blindness preview
Protanopia
No red cones — ~1% of men
Protanomaly
Reduced red sensitivity — ~1% of men
Deuteranopia
No green cones — ~1% of men
Deuteranomaly
Reduced green sensitivity — ~5% of men
Tritanopia
No blue cones — very rare
Tritanomaly
Reduced blue sensitivity — very rare
Achromatopsia
No color perception — ~1 in 30,000
Achromatomaly
Partial color perception — rare
Meaning, psychology and brand usage
The default of trust — and of everything else
Blue lowers perceived risk and is consistently rated as the most trustworthy hue, which is exactly why it saturates finance, enterprise software, and social platforms. Its ubiquity is now its weakness: a blue primary is safe but rarely memorable.
Trust, stability, and competence in Western markets; immortality in parts of East Asia; and protection against the evil eye across the Mediterranean and Middle East.
Ultramarine was ground from lapis lazuli and once cost more than gold, which is why medieval painters reserved it for the Virgin's robes. Synthetic ultramarine in 1826 democratised it almost overnight.
Reliable as a primary in any category that must feel secure. Differentiate by pushing toward an unusual chroma or pairing with an unexpected accent rather than defaulting to blue-plus-gray.
Common industries: Finance, Enterprise software, Insurance, Government, Aviation. Pairs well with warm amber for energy, crisp white for clarity, rose for a contemporary contrast.
Code exports
CSS
:root {
--color-dark-gray: #abb2bd;
--color-dark-gray-rgb: 171 178 189;
--color-dark-gray-hsl: 217 12% 71%;
--color-dark-gray-oklch: 76.14% 0.0176 259.42;
}
.element {
color: #abb2bd;
background-color: hsl(217, 12%, 71%);
border: 1px solid rgb(171 178 189 / 40%);
}SCSS
$dark-gray: #abb2bd;
$dark-gray-light: #d5d9de;
$dark-gray-dark: #56595f;
.element {
color: $dark-gray;
background: rgba($dark-gray, 0.12);
&:hover {
color: darken($dark-gray, 8%);
}
}LESS
@dark-gray: #abb2bd;
@dark-gray-light: lighten(@dark-gray, 12%);
@dark-gray-dark: darken(@dark-gray, 12%);
.element {
color: @dark-gray;
background: fade(@dark-gray, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-dark-gray-50: #eef0f2;
--color-dark-gray-100: #e6e8eb;
--color-dark-gray-200: #dde0e5;
--color-dark-gray-300: #cdd1d7;
--color-dark-gray-400: #bcc1ca;
--color-dark-gray-500: #abb2bd;
--color-dark-gray-600: #9aa0aa;
--color-dark-gray-700: #787d84;
--color-dark-gray-800: #56595f;
--color-dark-gray-900: #333539;
}
/* Usage */
<div class="bg-dark-gray-500 text-dark-gray-50 ring-dark-gray-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#abb2bd]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$dark-gray: #abb2bd;
$primary: $dark-gray;
$theme-colors: map-merge($theme-colors, (
"dark-gray": $dark-gray
));
// Generates .text-dark-gray, .bg-dark-gray, .btn-dark-gray
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color darkGray = Color(0xFFABB2BD);
// As a MaterialColor swatch
const MaterialColor darkGraySwatch = MaterialColor(0xFFABB2BD, <int, Color>{
50: Color(0xFFEEF0F2),
100: Color(0xFFE6E8EB),
200: Color(0xFFDDE0E5),
300: Color(0xFFCDD1D7),
400: Color(0xFFBCC1CA),
500: Color(0xFFABB2BD),
600: Color(0xFF9AA0AA),
700: Color(0xFF787D84),
800: Color(0xFF56595F),
900: Color(0xFF333539),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #abb2bd — Dark Gray
static let darkGray = Color(
red: 0.6706,
green: 0.698,
blue: 0.7412
)
}
// UIKit
extension UIColor {
static let darkGray = UIColor(
red: 0.6706,
green: 0.698,
blue: 0.7412,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="dark_gray">#ABB2BD</color>
<color name="dark_gray_translucent">#80ABB2BD</color>
</resources>
<!-- Jetpack Compose -->
val DarkGray = Color(0xFFABB2BD)JavaScript
export const DARK_GRAY = {
hex: "#abb2bd",
rgb: [171, 178, 189],
hsl: [217, 12, 71],
oklch: "oklch(76.14% 0.0176 259.42)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"dark-gray": {
"$type": "color",
"$value": "#abb2bd",
"$description": "Dark Gray — generated by ColorVerse AI"
}
}