Persian Red
HEX: #CC3333 | Modern Palette
Color Specifications
#CC3333
204, 51, 51
0°, 60% ,50%
0, 75, 75, 20
About Persian Red
Persian Red (#CC3333) is a color with RGB(204, 51, 51) and HSL(0°, 60%, 50%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #33CCCC, which creates strong contrast. Its triadic palette includes #33CC33 and #3333CC. The name comes from Persian Red (English).
- HEX: #CC3333
- RGB: 204, 51, 51
- HSL: 0°, 60%, 50%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #33CCCC
- Triadic colors: #33CC33, #3333CC
- The name comes from Persian Red (English).
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 #CC3333 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Red pigments have a long and rich history in Persia, dating back to antiquity. Natural red ochres, cinnabar, and later cochineal and madder dyes were extensively used in Persian art, ceramics, textiles (especially carpets), and manuscripts. The color 'Persian Red' itself, as a named shade, evokes the deep, rich reds found in these historical artifacts. It's a color that signifies warmth, richness, and often power or passion. The specific hex code #cc3333 represents a modern digital interpretation of this historical color.
First Recorded Use
The term 'Persian Red' for this specific color shade likely gained prominence in English-speaking regions during the 19th century, as European interest in Middle Eastern art, textiles, and pigments grew. While red pigments were used in Persia for millennia, the specific naming convention 'Persian Red' as a color descriptor is a later development.
Cultural Associations
In Persian culture, red has various symbolic meanings, including love, passion, courage, and sacrifice. It is prominently featured in traditional Persian carpets, miniature paintings, and architectural decorations. The 'Persian Red' color specifically brings to mind the vibrant and intricate designs of these art forms. It is often associated with luxury and exoticism in Western contexts due to its historical origins.
Code Snippets
/* Background */
.element {
background-color: #CC3333;
}
/* Text */
.element {
color: #CC3333;
}
/* Border */
.element {
border: 1px solid #CC3333;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CC3333,
#33CCCC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CC3333,
#33CCCC
);
}
// SCSS variable
$persian-red: #CC3333;
// With RGB channels (useful for rgba() usage)
$persian-red-r: 204;
$persian-red-g: 51;
$persian-red-b: 51;
// Usage
.element {
background-color: $persian-red;
color: rgba($persian-red-r, $persian-red-g, $persian-red-b, 0.8);
}