Violet Blue
HEX: #324AB2 | Modern Palette
Color Specifications
#324AB2
50, 74, 178
228°, 71% ,69%
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
Color Palettes
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.
Frequently Asked Questions
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);
}