#A490A3 Dusty Rose
rgb(164, 144, 163)
Color conversions
- HEX
- #A490A3
- RGB
- rgb(164, 144, 163)
- RGBA
- rgba(164, 144, 163, 1)
- HSL
- hsl(303, 10%, 60%)
- HSV / HSB
- hsv(303, 12%, 64%)
- CMYK
- cmyk(0%, 12%, 1%, 36%)
Wide-gamut spaces
- XYZ
- xyz(31.893, 30.484, 38.847)
- LAB
- lab(62.07 10.94 -7.25)
- LCH
- lch(62.07 13.12 326.48)
- OKLAB
- oklab(67.72% 0.0303 -0.0193)
- OKLCH
- oklch(67.72% 0.0359 327.52)
- 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
#a490a31a
#a490a333
#a490a34d
#a490a366
#a490a380
#a490a399
#a490a3b3
#a490a3cc
#a490a3e6
#a490a3ff
Accessibility and contrast
On white
2.96:1
Body text Fail · Large text Fail
On black
7.1: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: #a490a3;
--color-dusty-rose-rgb: 164 144 163;
--color-dusty-rose-hsl: 303 10% 60%;
--color-dusty-rose-oklch: 67.72% 0.0359 327.52;
}
.element {
color: #a490a3;
background-color: hsl(303, 10%, 60%);
border: 1px solid rgb(164 144 163 / 40%);
}SCSS
$dusty-rose: #a490a3;
$dusty-rose-light: #d2c8d1;
$dusty-rose-dark: #524852;
.element {
color: $dusty-rose;
background: rgba($dusty-rose, 0.12);
&:hover {
color: darken($dusty-rose, 8%);
}
}LESS
@dusty-rose: #a490a3;
@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: #ede9ed;
--color-dusty-rose-100: #e4dee3;
--color-dusty-rose-200: #dbd3da;
--color-dusty-rose-300: #c8bcc8;
--color-dusty-rose-400: #b6a6b5;
--color-dusty-rose-500: #a490a3;
--color-dusty-rose-600: #948293;
--color-dusty-rose-700: #736572;
--color-dusty-rose-800: #524852;
--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-[#a490a3]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$dusty-rose: #a490a3;
$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(0xFFA490A3);
// As a MaterialColor swatch
const MaterialColor dustyRoseSwatch = MaterialColor(0xFFA490A3, <int, Color>{
50: Color(0xFFEDE9ED),
100: Color(0xFFE4DEE3),
200: Color(0xFFDBD3DA),
300: Color(0xFFC8BCC8),
400: Color(0xFFB6A6B5),
500: Color(0xFFA490A3),
600: Color(0xFF948293),
700: Color(0xFF736572),
800: Color(0xFF524852),
900: Color(0xFF312B31),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #a490a3 — Dusty Rose
static let dustyRose = Color(
red: 0.6431,
green: 0.5647,
blue: 0.6392
)
}
// UIKit
extension UIColor {
static let dustyRose = UIColor(
red: 0.6431,
green: 0.5647,
blue: 0.6392,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="dusty_rose">#A490A3</color>
<color name="dusty_rose_translucent">#80A490A3</color>
</resources>
<!-- Jetpack Compose -->
val DustyRose = Color(0xFFA490A3)JavaScript
export const DUSTY_ROSE = {
hex: "#a490a3",
rgb: [164, 144, 163],
hsl: [303, 10, 60],
oklch: "oklch(67.72% 0.0359 327.52)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"dusty-rose": {
"$type": "color",
"$value": "#a490a3",
"$description": "Dusty Rose — generated by ColorVerse AI"
}
}