#A490A2 Dusty Rose
rgb(164, 144, 162)
Color conversions
- HEX
- #A490A2
- RGB
- rgb(164, 144, 162)
- RGBA
- rgba(164, 144, 162, 1)
- HSL
- hsl(306, 10%, 60%)
- HSV / HSB
- hsv(306, 12%, 64%)
- CMYK
- cmyk(0%, 12%, 1%, 36%)
Wide-gamut spaces
- XYZ
- xyz(31.804, 30.448, 38.377)
- LAB
- lab(62.04 10.75 -6.73)
- LCH
- lch(62.04 12.68 327.96)
- OKLAB
- oklab(67.68% 0.0299 -0.0179)
- OKLCH
- oklch(67.68% 0.0348 329.15)
- Nearest name
- Dusty Rose
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
#a490a21a
#a490a233
#a490a24d
#a490a266
#a490a280
#a490a299
#a490a2b3
#a490a2cc
#a490a2e6
#a490a2ff
Accessibility and contrast
On white
2.96:1
Body text Fail · Large text Fail
On black
7.09:1
Body text AAA · Large text AA
White-on-color contrast is 2.96: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-dusty-rose: #a490a2;
--color-dusty-rose-rgb: 164 144 162;
--color-dusty-rose-hsl: 306 10% 60%;
--color-dusty-rose-oklch: 67.68% 0.0348 329.15;
}
.element {
color: #a490a2;
background-color: hsl(306, 10%, 60%);
border: 1px solid rgb(164 144 162 / 40%);
}SCSS
$dusty-rose: #a490a2;
$dusty-rose-light: #d2c8d1;
$dusty-rose-dark: #524851;
.element {
color: $dusty-rose;
background: rgba($dusty-rose, 0.12);
&:hover {
color: darken($dusty-rose, 8%);
}
}LESS
@dusty-rose: #a490a2;
@dusty-rose-light: lighten(@dusty-rose, 12%);
@dusty-rose-dark: darken(@dusty-rose, 12%);
.element {
color: @dusty-rose;
background: fade(@dusty-rose, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-dusty-rose-50: #ede9ec;
--color-dusty-rose-100: #e4dee3;
--color-dusty-rose-200: #dbd3da;
--color-dusty-rose-300: #c8bcc7;
--color-dusty-rose-400: #b6a6b5;
--color-dusty-rose-500: #a490a2;
--color-dusty-rose-600: #948292;
--color-dusty-rose-700: #736571;
--color-dusty-rose-800: #524851;
--color-dusty-rose-900: #312b31;
}
/* Usage */
<div class="bg-dusty-rose-500 text-dusty-rose-50 ring-dusty-rose-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#a490a2]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$dusty-rose: #a490a2;
$primary: $dusty-rose;
$theme-colors: map-merge($theme-colors, (
"dusty-rose": $dusty-rose
));
// Generates .text-dusty-rose, .bg-dusty-rose, .btn-dusty-rose
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color dustyRose = Color(0xFFA490A2);
// As a MaterialColor swatch
const MaterialColor dustyRoseSwatch = MaterialColor(0xFFA490A2, <int, Color>{
50: Color(0xFFEDE9EC),
100: Color(0xFFE4DEE3),
200: Color(0xFFDBD3DA),
300: Color(0xFFC8BCC7),
400: Color(0xFFB6A6B5),
500: Color(0xFFA490A2),
600: Color(0xFF948292),
700: Color(0xFF736571),
800: Color(0xFF524851),
900: Color(0xFF312B31),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #a490a2 — Dusty Rose
static let dustyRose = Color(
red: 0.6431,
green: 0.5647,
blue: 0.6353
)
}
// UIKit
extension UIColor {
static let dustyRose = UIColor(
red: 0.6431,
green: 0.5647,
blue: 0.6353,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="dusty_rose">#A490A2</color>
<color name="dusty_rose_translucent">#80A490A2</color>
</resources>
<!-- Jetpack Compose -->
val DustyRose = Color(0xFFA490A2)JavaScript
export const DUSTY_ROSE = {
hex: "#a490a2",
rgb: [164, 144, 162],
hsl: [306, 10, 60],
oklch: "oklch(67.68% 0.0348 329.15)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"dusty-rose": {
"$type": "color",
"$value": "#a490a2",
"$description": "Dusty Rose — generated by ColorVerse AI"
}
}