#7D7A67 Shadow
rgb(125, 122, 103)
Color conversions
- HEX
- #7D7A67
- RGB
- rgb(125, 122, 103)
- RGBA
- rgba(125, 122, 103, 1)
- HSL
- hsl(52, 10%, 45%)
- HSV / HSB
- hsv(52, 18%, 49%)
- CMYK
- cmyk(0%, 2%, 18%, 51%)
Wide-gamut spaces
- XYZ
- xyz(17.865, 19.259, 15.605)
- LAB
- lab(50.99 -2.33 10.83)
- LCH
- lch(50.99 11.08 102.14)
- OKLAB
- oklab(57.67% -0.0048 0.0279)
- OKLCH
- oklch(57.67% 0.0283 99.82)
- Nearest name
- Shadow
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
#7d7a671a
#7d7a6733
#7d7a674d
#7d7a6766
#7d7a6780
#7d7a6799
#7d7a67b3
#7d7a67cc
#7d7a67e6
#7d7a67ff
Accessibility and contrast
On white
4.33:1
Body text AA Large · Large text AA
On black
4.85:1
Body text AA · Large text AA
White-on-color contrast is 4.33: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-shadow: #7d7a67;
--color-shadow-rgb: 125 122 103;
--color-shadow-hsl: 52 10% 45%;
--color-shadow-oklch: 57.67% 0.0283 99.82;
}
.element {
color: #7d7a67;
background-color: hsl(52, 10%, 45%);
border: 1px solid rgb(125 122 103 / 40%);
}SCSS
$shadow: #7d7a67;
$shadow-light: #bebdb3;
$shadow-dark: #3f3d34;
.element {
color: $shadow;
background: rgba($shadow, 0.12);
&:hover {
color: darken($shadow, 8%);
}
}LESS
@shadow: #7d7a67;
@shadow-light: lighten(@shadow, 12%);
@shadow-dark: darken(@shadow, 12%);
.element {
color: @shadow;
background: fade(@shadow, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-shadow-50: #e5e4e1;
--color-shadow-100: #d8d7d1;
--color-shadow-200: #cbcac2;
--color-shadow-300: #b1afa4;
--color-shadow-400: #979585;
--color-shadow-500: #7d7a67;
--color-shadow-600: #716e5d;
--color-shadow-700: #585548;
--color-shadow-800: #3f3d34;
--color-shadow-900: #26251f;
}
/* Usage */
<div class="bg-shadow-500 text-shadow-50 ring-shadow-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#7d7a67]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$shadow: #7d7a67;
$primary: $shadow;
$theme-colors: map-merge($theme-colors, (
"shadow": $shadow
));
// Generates .text-shadow, .bg-shadow, .btn-shadow
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color shadow = Color(0xFF7D7A67);
// As a MaterialColor swatch
const MaterialColor shadowSwatch = MaterialColor(0xFF7D7A67, <int, Color>{
50: Color(0xFFE5E4E1),
100: Color(0xFFD8D7D1),
200: Color(0xFFCBCAC2),
300: Color(0xFFB1AFA4),
400: Color(0xFF979585),
500: Color(0xFF7D7A67),
600: Color(0xFF716E5D),
700: Color(0xFF585548),
800: Color(0xFF3F3D34),
900: Color(0xFF26251F),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #7d7a67 — Shadow
static let shadow = Color(
red: 0.4902,
green: 0.4784,
blue: 0.4039
)
}
// UIKit
extension UIColor {
static let shadow = UIColor(
red: 0.4902,
green: 0.4784,
blue: 0.4039,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="shadow">#7D7A67</color>
<color name="shadow_translucent">#807D7A67</color>
</resources>
<!-- Jetpack Compose -->
val Shadow = Color(0xFF7D7A67)JavaScript
export const SHADOW = {
hex: "#7d7a67",
rgb: [125, 122, 103],
hsl: [52, 10, 45],
oklch: "oklch(57.67% 0.0283 99.82)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"shadow": {
"$type": "color",
"$value": "#7d7a67",
"$description": "Shadow — generated by ColorVerse AI"
}
}