#DAD2DA Light Gray
rgb(218, 210, 218)
Color conversions
- HEX
- #DAD2DA
- RGB
- rgb(218, 210, 218)
- RGBA
- rgba(218, 210, 218, 1)
- HSL
- hsl(300, 10%, 84%)
- HSV / HSB
- hsv(300, 4%, 85%)
- CMYK
- cmyk(0%, 4%, 0%, 15%)
Wide-gamut spaces
- XYZ
- xyz(64.613, 66.061, 75.663)
- LAB
- lab(85.03 4.18 -2.96)
- LCH
- lch(85.03 5.12 324.64)
- OKLAB
- oklab(87.25% 0.0115 -0.0078)
- OKLCH
- oklch(87.25% 0.0139 325.7)
- Nearest name
- Light 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
#dad2da1a
#dad2da33
#dad2da4d
#dad2da66
#dad2da80
#dad2da99
#dad2dab3
#dad2dacc
#dad2dae6
#dad2daff
Accessibility and contrast
On white
1.48:1
Body text Fail · Large text Fail
On black
14.21:1
Body text AAA · Large text AA
White-on-color contrast is 1.48: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 structural colour every interface actually runs on
Neutral grays carry no emotional charge, which is precisely their value: they let content and brand colour do the signalling. Their temperature matters more than designers expect — a cool gray beside a warm brand colour reads as a mistake.
Neutrality, professionalism, and precision. Overuse reads as noncommittal or unfinished.
Payne's gray, mixed rather than mined, became the painter's shortcut for atmospheric shadow. Swiss modernism turned systematic gray scales into a design methodology.
Build a full gray ramp before choosing a brand colour. Match the gray's temperature to the brand hue and reserve the darkest steps for type rather than large fills.
Common industries: Enterprise, Architecture, Automotive, Consulting, Hardware. Pairs well with a single saturated accent, warm white for text surfaces, near-black for hierarchy.
Code exports
CSS
:root {
--color-light-gray: #dad2da;
--color-light-gray-rgb: 218 210 218;
--color-light-gray-hsl: 300 10% 84%;
--color-light-gray-oklch: 87.25% 0.0139 325.7;
}
.element {
color: #dad2da;
background-color: hsl(300, 10%, 84%);
border: 1px solid rgb(218 210 218 / 40%);
}SCSS
$light-gray: #dad2da;
$light-gray-light: #ede9ed;
$light-gray-dark: #6d696d;
.element {
color: $light-gray;
background: rgba($light-gray, 0.12);
&:hover {
color: darken($light-gray, 8%);
}
}LESS
@light-gray: #dad2da;
@light-gray-light: lighten(@light-gray, 12%);
@light-gray-dark: darken(@light-gray, 12%);
.element {
color: @light-gray;
background: fade(@light-gray, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-light-gray-50: #f8f6f8;
--color-light-gray-100: #f4f2f4;
--color-light-gray-200: #f0edf0;
--color-light-gray-300: #e9e4e9;
--color-light-gray-400: #e1dbe1;
--color-light-gray-500: #dad2da;
--color-light-gray-600: #c4bdc4;
--color-light-gray-700: #999399;
--color-light-gray-800: #6d696d;
--color-light-gray-900: #413f41;
}
/* Usage */
<div class="bg-light-gray-500 text-light-gray-50 ring-light-gray-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#dad2da]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$light-gray: #dad2da;
$primary: $light-gray;
$theme-colors: map-merge($theme-colors, (
"light-gray": $light-gray
));
// Generates .text-light-gray, .bg-light-gray, .btn-light-gray
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color lightGray = Color(0xFFDAD2DA);
// As a MaterialColor swatch
const MaterialColor lightGraySwatch = MaterialColor(0xFFDAD2DA, <int, Color>{
50: Color(0xFFF8F6F8),
100: Color(0xFFF4F2F4),
200: Color(0xFFF0EDF0),
300: Color(0xFFE9E4E9),
400: Color(0xFFE1DBE1),
500: Color(0xFFDAD2DA),
600: Color(0xFFC4BDC4),
700: Color(0xFF999399),
800: Color(0xFF6D696D),
900: Color(0xFF413F41),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #dad2da — Light Gray
static let lightGray = Color(
red: 0.8549,
green: 0.8235,
blue: 0.8549
)
}
// UIKit
extension UIColor {
static let lightGray = UIColor(
red: 0.8549,
green: 0.8235,
blue: 0.8549,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="light_gray">#DAD2DA</color>
<color name="light_gray_translucent">#80DAD2DA</color>
</resources>
<!-- Jetpack Compose -->
val LightGray = Color(0xFFDAD2DA)JavaScript
export const LIGHT_GRAY = {
hex: "#dad2da",
rgb: [218, 210, 218],
hsl: [300, 10, 84],
oklch: "oklch(87.25% 0.0139 325.7)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"light-gray": {
"$type": "color",
"$value": "#dad2da",
"$description": "Light Gray — generated by ColorVerse AI"
}
}