#C8CFCC Light Gray
rgb(200, 207, 204)
Color conversions
- HEX
- #C8CFCC
- RGB
- rgb(200, 207, 204)
- RGBA
- rgba(200, 207, 204, 1)
- HSL
- hsl(154, 7%, 80%)
- HSV / HSB
- hsv(154, 3%, 81%)
- CMYK
- cmyk(3%, 0%, 1%, 19%)
Wide-gamut spaces
- XYZ
- xyz(57.029, 61.264, 65.936)
- LAB
- lab(82.52 -2.94 0.66)
- LCH
- lch(82.52 3.01 167.4)
- OKLAB
- oklab(84.82% -0.0085 0.0017)
- OKLCH
- oklch(84.82% 0.0087 168.71)
- 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
#c8cfcc1a
#c8cfcc33
#c8cfcc4d
#c8cfcc66
#c8cfcc80
#c8cfcc99
#c8cfccb3
#c8cfcccc
#c8cfcce6
#c8cfccff
Accessibility and contrast
On white
1.58:1
Body text Fail · Large text Fail
On black
13.25:1
Body text AAA · Large text AA
White-on-color contrast is 1.58: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: #c8cfcc;
--color-light-gray-rgb: 200 207 204;
--color-light-gray-hsl: 154 7% 80%;
--color-light-gray-oklch: 84.82% 0.0087 168.71;
}
.element {
color: #c8cfcc;
background-color: hsl(154, 7%, 80%);
border: 1px solid rgb(200 207 204 / 40%);
}SCSS
$light-gray: #c8cfcc;
$light-gray-light: #e4e7e6;
$light-gray-dark: #646866;
.element {
color: $light-gray;
background: rgba($light-gray, 0.12);
&:hover {
color: darken($light-gray, 8%);
}
}LESS
@light-gray: #c8cfcc;
@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: #f4f5f5;
--color-light-gray-100: #eff1f0;
--color-light-gray-200: #e9eceb;
--color-light-gray-300: #dee2e0;
--color-light-gray-400: #d3d9d6;
--color-light-gray-500: #c8cfcc;
--color-light-gray-600: #b4bab8;
--color-light-gray-700: #8c918f;
--color-light-gray-800: #646866;
--color-light-gray-900: #3c3e3d;
}
/* Usage */
<div class="bg-light-gray-500 text-light-gray-50 ring-light-gray-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#c8cfcc]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$light-gray: #c8cfcc;
$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(0xFFC8CFCC);
// As a MaterialColor swatch
const MaterialColor lightGraySwatch = MaterialColor(0xFFC8CFCC, <int, Color>{
50: Color(0xFFF4F5F5),
100: Color(0xFFEFF1F0),
200: Color(0xFFE9ECEB),
300: Color(0xFFDEE2E0),
400: Color(0xFFD3D9D6),
500: Color(0xFFC8CFCC),
600: Color(0xFFB4BAB8),
700: Color(0xFF8C918F),
800: Color(0xFF646866),
900: Color(0xFF3C3E3D),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #c8cfcc — Light Gray
static let lightGray = Color(
red: 0.7843,
green: 0.8118,
blue: 0.8
)
}
// UIKit
extension UIColor {
static let lightGray = UIColor(
red: 0.7843,
green: 0.8118,
blue: 0.8,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="light_gray">#C8CFCC</color>
<color name="light_gray_translucent">#80C8CFCC</color>
</resources>
<!-- Jetpack Compose -->
val LightGray = Color(0xFFC8CFCC)JavaScript
export const LIGHT_GRAY = {
hex: "#c8cfcc",
rgb: [200, 207, 204],
hsl: [154, 7, 80],
oklch: "oklch(84.82% 0.0087 168.71)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"light-gray": {
"$type": "color",
"$value": "#c8cfcc",
"$description": "Light Gray — generated by ColorVerse AI"
}
}