#E6A080 Dark Salmon
rgb(230, 160, 128)
Color conversions
- HEX
- #E6A080
- RGB
- rgb(230, 160, 128)
- RGBA
- rgba(230, 160, 128, 1)
- HSL
- hsl(19, 67%, 70%)
- HSV / HSB
- hsv(19, 44%, 90%)
- CMYK
- cmyk(0%, 30%, 44%, 10%)
Wide-gamut spaces
- XYZ
- xyz(49.102, 43.527, 26.233)
- LAB
- lab(71.91 22.27 27.12)
- LCH
- lch(71.91 35.09 50.61)
- OKLAB
- oklab(76.62% 0.0665 0.0675)
- OKLCH
- oklch(76.62% 0.0948 45.43)
- Nearest name
- Dark Salmon
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
#e6a0801a
#e6a08033
#e6a0804d
#e6a08066
#e6a08080
#e6a08099
#e6a080b3
#e6a080cc
#e6a080e6
#e6a080ff
Accessibility and contrast
On white
2.16:1
Body text Fail · Large text Fail
On black
9.7:1
Body text AAA · Large text AA
White-on-color contrast is 2.16: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
Friendly energy without red's alarm
Orange reads as enthusiastic and affordable. It converts well on calls to action because it is highly visible yet lacks red's threat association. At low saturation it becomes terracotta and shifts from playful to crafted and earthy.
Associated with harvest, warmth, and creativity in Western markets, and with sacred devotion in India where saffron carries religious weight.
The colour had no English name until the fruit arrived in the sixteenth century — before that it was 'geoluread', yellow-red. Modern brand orange owes its ubiquity to inexpensive azo pigments.
Strong for developer tools, logistics, and value-focused consumer brands. Pair with a dark neutral rather than another warm hue to avoid a Halloween reading.
Common industries: Technology, Logistics, Fitness, Construction, Family retail. Pairs well with deep teal for balance, off-black for contrast, sand for a natural palette.
Code exports
CSS
:root {
--color-dark-salmon: #e6a080;
--color-dark-salmon-rgb: 230 160 128;
--color-dark-salmon-hsl: 19 67% 70%;
--color-dark-salmon-oklch: 76.62% 0.0948 45.43;
}
.element {
color: #e6a080;
background-color: hsl(19, 67%, 70%);
border: 1px solid rgb(230 160 128 / 40%);
}SCSS
$dark-salmon: #e6a080;
$dark-salmon-light: #f3d0c0;
$dark-salmon-dark: #735040;
.element {
color: $dark-salmon;
background: rgba($dark-salmon, 0.12);
&:hover {
color: darken($dark-salmon, 8%);
}
}LESS
@dark-salmon: #e6a080;
@dark-salmon-light: lighten(@dark-salmon, 12%);
@dark-salmon-dark: darken(@dark-salmon, 12%);
.element {
color: @dark-salmon;
background: fade(@dark-salmon, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-dark-salmon-50: #faece6;
--color-dark-salmon-100: #f8e3d9;
--color-dark-salmon-200: #f5d9cc;
--color-dark-salmon-300: #f0c6b3;
--color-dark-salmon-400: #ebb399;
--color-dark-salmon-500: #e6a080;
--color-dark-salmon-600: #cf9073;
--color-dark-salmon-700: #a1705a;
--color-dark-salmon-800: #735040;
--color-dark-salmon-900: #453026;
}
/* Usage */
<div class="bg-dark-salmon-500 text-dark-salmon-50 ring-dark-salmon-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#e6a080]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$dark-salmon: #e6a080;
$primary: $dark-salmon;
$theme-colors: map-merge($theme-colors, (
"dark-salmon": $dark-salmon
));
// Generates .text-dark-salmon, .bg-dark-salmon, .btn-dark-salmon
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color darkSalmon = Color(0xFFE6A080);
// As a MaterialColor swatch
const MaterialColor darkSalmonSwatch = MaterialColor(0xFFE6A080, <int, Color>{
50: Color(0xFFFAECE6),
100: Color(0xFFF8E3D9),
200: Color(0xFFF5D9CC),
300: Color(0xFFF0C6B3),
400: Color(0xFFEBB399),
500: Color(0xFFE6A080),
600: Color(0xFFCF9073),
700: Color(0xFFA1705A),
800: Color(0xFF735040),
900: Color(0xFF453026),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #e6a080 — Dark Salmon
static let darkSalmon = Color(
red: 0.902,
green: 0.6275,
blue: 0.502
)
}
// UIKit
extension UIColor {
static let darkSalmon = UIColor(
red: 0.902,
green: 0.6275,
blue: 0.502,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="dark_salmon">#E6A080</color>
<color name="dark_salmon_translucent">#80E6A080</color>
</resources>
<!-- Jetpack Compose -->
val DarkSalmon = Color(0xFFE6A080)JavaScript
export const DARK_SALMON = {
hex: "#e6a080",
rgb: [230, 160, 128],
hsl: [19, 67, 70],
oklch: "oklch(76.62% 0.0948 45.43)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"dark-salmon": {
"$type": "color",
"$value": "#e6a080",
"$description": "Dark Salmon — generated by ColorVerse AI"
}
}