Razzmatazz
HEX: #E3256B | Modern Palette
Color Specifications
#E3256B
227, 37, 107
337°, 77% ,51%
0, 84, 53, 11
About Razzmatazz
Razzmatazz (#E3256B) is a color with RGB(227, 37, 107) and HSL(337.9°, 77.2%, 51.8%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #25E39D, which creates strong contrast. Its triadic palette includes #6BE325 and #256BE3. The name comes from razzmatazz (English (American Slang)).
- HEX: #E3256B
- RGB: 227, 37, 107
- HSL: 337.9°, 77.2%, 51.8%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #25E39D
- Triadic colors: #6BE325, #256BE3
- The name comes from razzmatazz (English (American Slang)).
Live Components
Color Palettes
Razzmatazz #E3256B 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
Razzmatazz #E3256B pairs with #25E39D as its complementary color, and #6BE325 and #256BE3 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The exact etymology of 'razzmatazz' is somewhat obscure, but it is widely believed to be an American slang term that emerged in the 1920s. It is likely an onomatopoeic or reduplicative formation, similar to other slang words of the era like 'razzle-dazzle' (which it is often used interchangeably with or considered a variant of). The 'razz' component might relate to 'razz' meaning to tease or make fun of, often with a loud, brassy sound, while the 'matazz' part adds to the rhythmic, somewhat nonsensical, and energetic feel. It quickly became associated with the vibrant, often over-the-top entertainment and social scene of the Roaring Twenties.
First Recorded Use
1920s
Cultural Associations
During the 1920s, 'razzmatazz' captured the spirit of an era characterized by jazz music, flappers, speakeasies, and a general sense of exuberance and rebellion against pre-war conservatism. It evokes images of lively performances, elaborate costumes, and a certain theatricality. Today, it still carries connotations of excitement, showmanship, and sometimes a slight hint of superficiality or excessive flashiness. It's often used to describe marketing, entertainment, or events that are designed to impress and create a buzz.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #E3256B;
}
/* Text */
.element {
color: #E3256B;
}
/* Border */
.element {
border: 1px solid #E3256B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E3256B,
#25E39D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E3256B,
#25E39D
);
}
// SCSS variable
$razzmatazz: #E3256B;
// With RGB channels (useful for rgba() usage)
$razzmatazz-r: 227;
$razzmatazz-g: 37;
$razzmatazz-b: 107;
// Usage
.element {
background-color: $razzmatazz;
color: rgba($razzmatazz-r, $razzmatazz-g, $razzmatazz-b, 0.8);
}