#9B656D Rose Gold

rgb(155, 101, 109)

Color conversions

HEX
#9B656D
RGB
rgb(155, 101, 109)
RGBA
rgba(155, 101, 109, 1)
HSL
hsl(351, 21%, 50%)
HSV / HSB
hsv(351, 35%, 61%)
CMYK
cmyk(0%, 35%, 30%, 39%)

Wide-gamut spaces

XYZ
xyz(20.932, 17.381, 16.717)
LAB
lab(48.74 22.91 4.52)
LCH
lch(48.74 23.35 11.17)
OKLAB
oklab(56.69% 0.0694 0.0121)
OKLCH
oklch(56.69% 0.0705 9.86)
Nearest name
Rose Gold

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#9b656d1a

#9b656d33

#9b656d4d

#9b656d66

#9b656d80

#9b656d99

#9b656db3

#9b656dcc

#9b656de6

#9b656dff

Accessibility and contrast

On white

4.69:1

Body text AA · Large text AA

On black

4.48:1

Body text AA Large · Large text AA

White-on-color contrast is 4.69: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

Urgency, appetite, and appetite-driven action

Red raises perceived urgency and measurably increases heart rate. In interfaces it pulls attention faster than any other hue, which is why it dominates sale badges, error states, and single primary actions. Used across large surfaces it reads as aggressive and raises anxiety, so reserve it for moments that genuinely deserve interruption.

Across most Western markets red signals passion, danger, and importance. In China and much of East Asia it carries luck and prosperity instead, making it a celebratory rather than cautionary choice.

Red ochre is the oldest pigment in human art, present in cave paintings over 40,000 years old. Vermilion and later cadmium red made saturated reds affordable to industry, which is why the hue is so tightly bound to twentieth-century advertising.

Works as a primary for food, entertainment, sport, and clearance-driven retail. Keep it to under 10% of surface area in dashboards and productivity tools, where it competes with destructive-action semantics.

Common industries: Food & beverage, Entertainment, Sport, Retail, Automotive. Pairs well with deep navy for authority, warm cream for approachability, charcoal for premium restraint.

Code exports

CSS

:root {
  --color-rose-gold: #9b656d;
  --color-rose-gold-rgb: 155 101 109;
  --color-rose-gold-hsl: 351 21% 50%;
  --color-rose-gold-oklch: 56.69% 0.0705 9.86;
}

.element {
  color: #9b656d;
  background-color: hsl(351, 21%, 50%);
  border: 1px solid rgb(155 101 109 / 40%);
}

SCSS

$rose-gold: #9b656d;
$rose-gold-light: #cdb2b6;
$rose-gold-dark: #4e3337;

.element {
  color: $rose-gold;
  background: rgba($rose-gold, 0.12);

  &:hover {
    color: darken($rose-gold, 8%);
  }
}

LESS

@rose-gold: #9b656d;
@rose-gold-light: lighten(@rose-gold, 12%);
@rose-gold-dark: darken(@rose-gold, 12%);

.element {
  color: @rose-gold;
  background: fade(@rose-gold, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-rose-gold-50: #ebe0e2;
  --color-rose-gold-100: #e1d1d3;
  --color-rose-gold-200: #d7c1c5;
  --color-rose-gold-300: #c3a3a7;
  --color-rose-gold-400: #af848a;
  --color-rose-gold-500: #9b656d;
  --color-rose-gold-600: #8c5b62;
  --color-rose-gold-700: #6d474c;
  --color-rose-gold-800: #4e3337;
  --color-rose-gold-900: #2f1e21;
}

/* Usage */
<div class="bg-rose-gold-500 text-rose-gold-50 ring-rose-gold-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#9b656d]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$rose-gold: #9b656d;
$primary: $rose-gold;

$theme-colors: map-merge($theme-colors, (
  "rose-gold": $rose-gold
));

// Generates .text-rose-gold, .bg-rose-gold, .btn-rose-gold
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color roseGold = Color(0xFF9B656D);

// As a MaterialColor swatch
const MaterialColor roseGoldSwatch = MaterialColor(0xFF9B656D, <int, Color>{
  50: Color(0xFFEBE0E2),
  100: Color(0xFFE1D1D3),
  200: Color(0xFFD7C1C5),
  300: Color(0xFFC3A3A7),
  400: Color(0xFFAF848A),
  500: Color(0xFF9B656D),
  600: Color(0xFF8C5B62),
  700: Color(0xFF6D474C),
  800: Color(0xFF4E3337),
  900: Color(0xFF2F1E21),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #9b656d — Rose Gold
    static let roseGold = Color(
        red: 0.6078,
        green: 0.3961,
        blue: 0.4275
    )
}

// UIKit
extension UIColor {
    static let roseGold = UIColor(
        red: 0.6078,
        green: 0.3961,
        blue: 0.4275,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="rose_gold">#9B656D</color>
    <color name="rose_gold_translucent">#809B656D</color>
</resources>

<!-- Jetpack Compose -->
val RoseGold = Color(0xFF9B656D)

JavaScript

export const ROSE_GOLD = {
  hex: "#9b656d",
  rgb: [155, 101, 109],
  hsl: [351, 21, 50],
  oklch: "oklch(56.69% 0.0705 9.86)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "rose-gold": {
    "$type": "color",
    "$value": "#9b656d",
    "$description": "Rose Gold — generated by ColorVerse AI"
  }
}