Dusty Blue and Sage color palette
darkseagreen · 0.036
A quiet, restful feeling sits at the center of this pairing. Dusty Blue (#8DA9C4) is a soft, hazy blue with the calm of a sky just before dusk. Sage (#9CAF88) is a gentle gray-green that reads like dried herbs or weathered eucalyptus. Together they feel pastoral and slightly nostalgic, the kind of palette that calms a room without going cold.
The two sit 119 degrees apart, but both are muted and almost identical in lightness, so the measures only 1.03 to 1. That is too low for text on text, but it is exactly why the combination works as a tonal scheme. The colors blend into each other through a soft gray-green midpoint (#94ADA7).
For weddings, this is a go-to pairing for bridesmaid dresses with sage greenery and dusty blue florals. In interiors, it suits bedrooms, nurseries, and bathrooms where you want softness. Add cream, warm wood, or brushed brass for the contrast the palette itself does not provide.
See Dusty Blue and Sage in use
Dusty Blue Tailwind scale (50-900)
Sage Tailwind scale (50-900)
Dusty Blue to Sage blend
A continuous interpolation from Dusty Blue to Sage, sampled into the 10 steps below. Tap any swatch to copy its hex.
Why Dusty Blue and Sage blend best in OKLab
The same two colors blended three ways. This site uses OKLab, which keeps the blend smooth and evenly lit. The other two are shown so you can see what to avoid: sRGB darkens and muddies the middle, and HSL detours through colors that are not in your palette.
Accessibility
Do not place Dusty Blue text on Sage (or the reverse) for body copy. For readable text, pair a dark scale step such as dusty-blue-800 or sage-900 with a light one like sage-50.
Contrast pairing grid
Rows are Dusty Blue steps, columns are Sage steps. Each mark is a Dusty Blue step shown on a Sage step: a check means it clears WCAG AA for text (4.5:1). If you can read the mark, the pairing is legible.
| 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | |
|---|---|---|---|---|---|---|---|---|---|---|
| 50 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ | ✓ | ✓ |
| 100 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ | ✓ | ✓ |
| 200 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ | ✓ | ✓ |
| 300 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ | ✓ |
| 400 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ | ✓ |
| 500 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ | ✓ |
| 600 | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✓ |
| 700 | ✓ | ✓ | ✓ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
| 800 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ | ✗ | ✗ | ✗ |
| 900 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ | ✗ | ✗ |
✓ passes AA ✗ fails AA
Copy for Tailwind
Tailwind v4 — @theme (paste into your CSS)
@theme {
--color-dusty-blue-50: #F8FAFB;
--color-dusty-blue-100: #F1F4F8;
--color-dusty-blue-200: #E5ECF2;
--color-dusty-blue-300: #D5DFEA;
--color-dusty-blue-400: #BFCFDF;
--color-dusty-blue-500: #8DA9C4;
--color-dusty-blue-600: #728AA0;
--color-dusty-blue-700: #556778;
--color-dusty-blue-800: #303B46;
--color-dusty-blue-900: #12171D;
--color-sage-50: #F9FAF8;
--color-sage-100: #F3F5F0;
--color-sage-200: #E9EDE4;
--color-sage-300: #DAE2D3;
--color-sage-400: #C7D3BD;
--color-sage-500: #9CAF88;
--color-sage-600: #7F8F6E;
--color-sage-700: #5F6B52;
--color-sage-800: #363D2E;
--color-sage-900: #151811;
}
Tailwind v3 — tailwind.config.js
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'dusty-blue': {
50: '#F8FAFB',
100: '#F1F4F8',
200: '#E5ECF2',
300: '#D5DFEA',
400: '#BFCFDF',
500: '#8DA9C4',
600: '#728AA0',
700: '#556778',
800: '#303B46',
900: '#12171D',
},
'sage': {
50: '#F9FAF8',
100: '#F3F5F0',
200: '#E9EDE4',
300: '#DAE2D3',
400: '#C7D3BD',
500: '#9CAF88',
600: '#7F8F6E',
700: '#5F6B52',
800: '#363D2E',
900: '#151811',
},
},
},
},
};
CSS variables
:root {
--dusty-blue-50: #F8FAFB;
--dusty-blue-100: #F1F4F8;
--dusty-blue-200: #E5ECF2;
--dusty-blue-300: #D5DFEA;
--dusty-blue-400: #BFCFDF;
--dusty-blue-500: #8DA9C4;
--dusty-blue-600: #728AA0;
--dusty-blue-700: #556778;
--dusty-blue-800: #303B46;
--dusty-blue-900: #12171D;
--sage-50: #F9FAF8;
--sage-100: #F3F5F0;
--sage-200: #E9EDE4;
--sage-300: #DAE2D3;
--sage-400: #C7D3BD;
--sage-500: #9CAF88;
--sage-600: #7F8F6E;
--sage-700: #5F6B52;
--sage-800: #363D2E;
--sage-900: #151811;
}SCSS variables
$dusty-blue-50: #F8FAFB; $dusty-blue-100: #F1F4F8; $dusty-blue-200: #E5ECF2; $dusty-blue-300: #D5DFEA; $dusty-blue-400: #BFCFDF; $dusty-blue-500: #8DA9C4; $dusty-blue-600: #728AA0; $dusty-blue-700: #556778; $dusty-blue-800: #303B46; $dusty-blue-900: #12171D; $sage-50: #F9FAF8; $sage-100: #F3F5F0; $sage-200: #E9EDE4; $sage-300: #DAE2D3; $sage-400: #C7D3BD; $sage-500: #9CAF88; $sage-600: #7F8F6E; $sage-700: #5F6B52; $sage-800: #363D2E; $sage-900: #151811;
JSON tokens
{
"dusty-blue": {
"50": "#F8FAFB",
"100": "#F1F4F8",
"200": "#E5ECF2",
"300": "#D5DFEA",
"400": "#BFCFDF",
"500": "#8DA9C4",
"600": "#728AA0",
"700": "#556778",
"800": "#303B46",
"900": "#12171D"
},
"sage": {
"50": "#F9FAF8",
"100": "#F3F5F0",
"200": "#E9EDE4",
"300": "#DAE2D3",
"400": "#C7D3BD",
"500": "#9CAF88",
"600": "#7F8F6E",
"700": "#5F6B52",
"800": "#363D2E",
"900": "#151811"
}
}How we name colors
There is no single official authority for naming colors. We use the common, widely recognized name as the primary label for each color (here, Dusty Blue and Sage); many common names are themselves W3C CSS named colors. For transparency we also show the nearest W3C CSS named color and the perceptual distance, ΔE, measured in OKLab. A small ΔE means the name is essentially exact; a larger one means it is the closest standard name rather than a perfect match.
Sources: W3C CSS Color Module Level 4 and the open color-name-list dataset, used to verify every color sits near a recognized name.