Blue (pigment)
HEX: #333399 | Modern Palette
Color Specifications
#333399
51, 51, 153
240°, 66% ,60%
66.67, 66.67, 0, 40
About Blue (pigment)
Blue (pigment) (#333399) is a color with RGB(51, 51, 153) and HSL(240°, 66.67%, 60%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #999933, which creates strong contrast. Its triadic palette includes #993333 and #339933.
- HEX: #333399
- RGB: 51, 51, 153
- HSL: 240°, 66.67%, 60%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #999933
- Triadic colors: #993333, #339933
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 #333399 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #333399;
}
/* Text */
.element {
color: #333399;
}
/* Border */
.element {
border: 1px solid #333399;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#333399,
#DDDD55
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#333399,
#DDDD55
);
}
// SCSS variable
$blue-(pigment): #333399;
// With RGB channels (useful for rgba() usage)
$blue-(pigment)-r: 51;
$blue-(pigment)-g: 51;
$blue-(pigment)-b: 153;
// Usage
.element {
background-color: $blue-(pigment);
color: rgba($blue-(pigment)-r, $blue-(pigment)-g, $blue-(pigment)-b, 0.8);
}