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
Blue (pigment) #333399 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
Blue (pigment) #333399 pairs with #999933 as its complementary color, and #993333 and #339933 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
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);
}