Violet Blue

HEX: #324AB2 | Modern Palette

On White
7.61:1
PASS
On Black
2.76:1
FAIL

Color Specifications

HEX
#324AB2
RGB
50, 74, 178
HSL
228°, 71% ,69%
CMYK
71.91, 58.43, 0, 30.2

About Violet Blue

Violet Blue (#324AB2) is a color with RGB(50, 74, 178) and HSL(228.75°, 71.91%, 69.8%). It is commonly associated with Playful moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B29A32, which creates strong contrast. Its triadic palette includes #B2324A and #4AB232.

  • HEX: #324AB2
  • RGB: 50, 74, 178
  • HSL: 228.75°, 71.91%, 69.8%
  • Mood: Playful
  • Style: Vivid, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #B29A32
  • Triadic colors: #B2324A, #4AB232

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #324AB2 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #4444B2
Protanopia #4848B2
Tritanopia #006060
Achromatopsia #545454

Frequently Asked Questions

Violet Blue (#324AB2) is a color with RGB(50, 74, 178) and HSL(228.75°, 71.91%, 69.8%).

#324AB2 pairs strongly with #B29A32 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#324AB2 is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#324AB2 is commonly associated with Playful.

Similar Named Colors

Cerulean Blue #2A52BE ΔE 3.18
New Car #214FC6 ΔE 3.20
Cobalt #0047AB ΔE 3.79
Sapphire #0F52BA ΔE 4.42

Code Snippets

/* Background */
.element {
    background-color: #324AB2;
}

/* Text */
.element {
    color: #324AB2;
}

/* Border */
.element {
    border: 1px solid #324AB2;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #324AB2,
        #E9D57B
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #324AB2,
        #E9D57B
    );
}

// SCSS variable
$violet-blue: #324AB2;

// With RGB channels (useful for rgba() usage)
$violet-blue-r: 50;
$violet-blue-g: 74;
$violet-blue-b: 178;

// Usage
.element {
    background-color: $violet-blue;
    color: rgba($violet-blue-r, $violet-blue-g, $violet-blue-b, 0.8);
}