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
Violet Blue #324AB2 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Violet Blue #324AB2 pairs with #B29A32 as its complementary color, and #B2324A and #4AB232 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}