#5D4E4D Umber
rgb(93, 78, 77)
Color conversions
- HEX
- #5D4E4D
- RGB
- rgb(93, 78, 77)
- RGBA
- rgba(93, 78, 77, 1)
- HSL
- hsl(4, 9%, 33%)
- HSV / HSB
- hsv(4, 17%, 36%)
- CMYK
- cmyk(0%, 16%, 17%, 64%)
Wide-gamut spaces
- XYZ
- xyz(8.578, 8.312, 8.172)
- LAB
- lab(34.62 6.07 2.92)
- LCH
- lch(34.62 6.74 25.69)
- OKLAB
- oklab(43.87% 0.0187 0.0077)
- OKLCH
- oklch(43.87% 0.0203 22.47)
- Nearest name
- Umber
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
#5d4e4d1a
#5d4e4d33
#5d4e4d4d
#5d4e4d66
#5d4e4d80
#5d4e4d99
#5d4e4db3
#5d4e4dcc
#5d4e4de6
#5d4e4dff
Accessibility and contrast
On white
7.89:1
Body text AAA · Large text AA
On black
2.66:1
Body text Fail · Large text Fail
White-on-color contrast is 7.89: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-umber: #5d4e4d;
--color-umber-rgb: 93 78 77;
--color-umber-hsl: 4 9% 33%;
--color-umber-oklch: 43.87% 0.0203 22.47;
}
.element {
color: #5d4e4d;
background-color: hsl(4, 9%, 33%);
border: 1px solid rgb(93 78 77 / 40%);
}SCSS
$umber: #5d4e4d;
$umber-light: #aea7a6;
$umber-dark: #2f2727;
.element {
color: $umber;
background: rgba($umber, 0.12);
&:hover {
color: darken($umber, 8%);
}
}LESS
@umber: #5d4e4d;
@umber-light: lighten(@umber, 12%);
@umber-dark: darken(@umber, 12%);
.element {
color: @umber;
background: fade(@umber, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-umber-50: #dfdcdb;
--color-umber-100: #cecaca;
--color-umber-200: #beb8b8;
--color-umber-300: #9e9594;
--color-umber-400: #7d7171;
--color-umber-500: #5d4e4d;
--color-umber-600: #544645;
--color-umber-700: #413736;
--color-umber-800: #2f2727;
--color-umber-900: #1c1717;
}
/* Usage */
<div class="bg-umber-500 text-umber-50 ring-umber-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#5d4e4d]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$umber: #5d4e4d;
$primary: $umber;
$theme-colors: map-merge($theme-colors, (
"umber": $umber
));
// Generates .text-umber, .bg-umber, .btn-umber
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color umber = Color(0xFF5D4E4D);
// As a MaterialColor swatch
const MaterialColor umberSwatch = MaterialColor(0xFF5D4E4D, <int, Color>{
50: Color(0xFFDFDCDB),
100: Color(0xFFCECACA),
200: Color(0xFFBEB8B8),
300: Color(0xFF9E9594),
400: Color(0xFF7D7171),
500: Color(0xFF5D4E4D),
600: Color(0xFF544645),
700: Color(0xFF413736),
800: Color(0xFF2F2727),
900: Color(0xFF1C1717),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #5d4e4d — Umber
static let umber = Color(
red: 0.3647,
green: 0.3059,
blue: 0.302
)
}
// UIKit
extension UIColor {
static let umber = UIColor(
red: 0.3647,
green: 0.3059,
blue: 0.302,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="umber">#5D4E4D</color>
<color name="umber_translucent">#805D4E4D</color>
</resources>
<!-- Jetpack Compose -->
val Umber = Color(0xFF5D4E4D)JavaScript
export const UMBER = {
hex: "#5d4e4d",
rgb: [93, 78, 77],
hsl: [4, 9, 33],
oklch: "oklch(43.87% 0.0203 22.47)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"umber": {
"$type": "color",
"$value": "#5d4e4d",
"$description": "Umber — generated by ColorVerse AI"
}
}