Medium Violet Red (Pink)
#D22D8B
RGB: 210, 45, 139
Color OverviewHEX #D22D8B

#D22D8B Color Code Information

In the RGB color space, #D22D8B is composed of 82% red, 18% green, and 55% blue. In the HSL color space, it has a hue of 326°, saturation of 65%, and lightness of 50%.

HEX
#D22D8B
RGB
210, 45, 139
HSL
326°, 65%, 50%
HSV
326°, 79%, 82%
CMYK
0%, 79%, 34%, 18%
Name Match
Medium Violet Red
Closest Standard

Shades of #D22D8B (Darker Variations)

Shades are created by progressively mixing the base color with black.

Tints of #D22D8B (Lighter Variations)

Tints are created by progressively mixing the base color with pure white.

Tones of #D22D8B (Muted Variations)

Tones are created by mixing the base color with true neutral gray.

Color Harmonies for #D22D8B

Calculated color schemes based on classic color wheel angles for graphic and web design.

WCAG Accessibility Contrast Ratios

Verification against Web Content Accessibility Guidelines (WCAG 2.1) standards for web text readability.

Sample Text on #D22D8B Background
Contrast Ratio against Pure White (#FFFFFF):4.68 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #D22D8B Background
Contrast Ratio against Pure Black (#000000):4.49 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #D22D8B;
}

.element {
  color: #D22D8B;
  background-color: #D22D8B;
  border-color: #D22D8B;
}
Tailwind CSS v4 Utility Classes
<!-- Tailwind Arbitrary Values -->
<div className="bg-[#D22D8B] text-[#D22D8B] border-[#D22D8B]">
  Content styled with #D22D8B
</div>