Dark Slate Blue (Blue)
#2F2F8D
RGB: 47, 47, 141
Color OverviewHEX #2F2F8D

#2F2F8D Color Code Information

In the RGB color space, #2F2F8D is composed of 18% red, 18% green, and 55% blue. In the HSL color space, it has a hue of 240°, saturation of 50%, and lightness of 37%.

HEX
#2F2F8D
RGB
47, 47, 141
HSL
240°, 50%, 37%
HSV
240°, 67%, 55%
CMYK
67%, 67%, 0%, 45%
Name Match
Dark Slate Blue
Closest Standard

Shades of #2F2F8D (Darker Variations)

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

Tints of #2F2F8D (Lighter Variations)

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

Tones of #2F2F8D (Muted Variations)

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

Color Harmonies for #2F2F8D

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 #2F2F8D Background
Contrast Ratio against Pure White (#FFFFFF):10.98 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #2F2F8D Background
Contrast Ratio against Pure Black (#000000):1.91 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

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

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