#6B595A Umber
rgb(107, 89, 90)
Color conversions
- HEX
- #6B595A
- RGB
- rgb(107, 89, 90)
- RGBA
- rgba(107, 89, 90, 1)
- HSL
- hsl(357, 9%, 38%)
- HSV / HSB
- hsv(357, 17%, 42%)
- CMYK
- cmyk(0%, 17%, 16%, 58%)
Wide-gamut spaces
- XYZ
- xyz(11.481, 11.009, 11.191)
- LAB
- lab(39.6 7.53 2.17)
- LCH
- lch(39.6 7.83 16.08)
- OKLAB
- oklab(48.21% 0.0229 0.0058)
- OKLCH
- oklch(48.21% 0.0237 14.22)
- 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
#6b595a1a
#6b595a33
#6b595a4d
#6b595a66
#6b595a80
#6b595a99
#6b595ab3
#6b595acc
#6b595ae6
#6b595aff
Accessibility and contrast
On white
6.56:1
Body text AA · Large text AA
On black
3.2:1
Body text AA Large · Large text AA
White-on-color contrast is 6.56: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: #6b595a;
--color-umber-rgb: 107 89 90;
--color-umber-hsl: 357 9% 38%;
--color-umber-oklch: 48.21% 0.0237 14.22;
}
.element {
color: #6b595a;
background-color: hsl(357, 9%, 38%);
border: 1px solid rgb(107 89 90 / 40%);
}SCSS
$umber: #6b595a;
$umber-light: #b5acad;
$umber-dark: #362d2d;
.element {
color: $umber;
background: rgba($umber, 0.12);
&:hover {
color: darken($umber, 8%);
}
}LESS
@umber: #6b595a;
@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: #e1dede;
--color-umber-100: #d3cdce;
--color-umber-200: #c4bdbd;
--color-umber-300: #a69b9c;
--color-umber-400: #897a7b;
--color-umber-500: #6b595a;
--color-umber-600: #605051;
--color-umber-700: #4b3e3f;
--color-umber-800: #362d2d;
--color-umber-900: #201b1b;
}
/* Usage */
<div class="bg-umber-500 text-umber-50 ring-umber-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#6b595a]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$umber: #6b595a;
$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(0xFF6B595A);
// As a MaterialColor swatch
const MaterialColor umberSwatch = MaterialColor(0xFF6B595A, <int, Color>{
50: Color(0xFFE1DEDE),
100: Color(0xFFD3CDCE),
200: Color(0xFFC4BDBD),
300: Color(0xFFA69B9C),
400: Color(0xFF897A7B),
500: Color(0xFF6B595A),
600: Color(0xFF605051),
700: Color(0xFF4B3E3F),
800: Color(0xFF362D2D),
900: Color(0xFF201B1B),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #6b595a — Umber
static let umber = Color(
red: 0.4196,
green: 0.349,
blue: 0.3529
)
}
// UIKit
extension UIColor {
static let umber = UIColor(
red: 0.4196,
green: 0.349,
blue: 0.3529,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="umber">#6B595A</color>
<color name="umber_translucent">#806B595A</color>
</resources>
<!-- Jetpack Compose -->
val Umber = Color(0xFF6B595A)JavaScript
export const UMBER = {
hex: "#6b595a",
rgb: [107, 89, 90],
hsl: [357, 9, 38],
oklch: "oklch(48.21% 0.0237 14.22)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"umber": {
"$type": "color",
"$value": "#6b595a",
"$description": "Umber — generated by ColorVerse AI"
}
}