Medium Violet Red (Pink)
#9B2F9B
RGB: 155, 47, 155
Color OverviewHEX #9B2F9B

#9B2F9B Color Code Information

In the RGB color space, #9B2F9B is composed of 61% red, 18% green, and 61% blue. In the HSL color space, it has a hue of 300°, saturation of 53%, and lightness of 40%.

HEX
#9B2F9B
RGB
155, 47, 155
HSL
300°, 53%, 40%
HSV
300°, 70%, 61%
CMYK
0%, 70%, 0%, 39%
Name Match
Medium Violet Red
Closest Standard

Shades of #9B2F9B (Darker Variations)

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

Tints of #9B2F9B (Lighter Variations)

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

Tones of #9B2F9B (Muted Variations)

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

Color Harmonies for #9B2F9B

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 #9B2F9B Background
Contrast Ratio against Pure White (#FFFFFF):6.41 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #9B2F9B Background
Contrast Ratio against Pure Black (#000000):3.27 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

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

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