Persian Red

HEX: #CC3333 | Modern Palette

On White
5.14:1
PASS
On Black
4.09:1
FAIL

Color Specifications

HEX
#CC3333
RGB
204, 51, 51
HSL
0°, 60% ,50%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #7B7B27
Protanopia #575735
Tritanopia #CC3333
Achromatopsia #6E6E6E

Frequently Asked Questions

Persian Red (#CC3333) is a color with RGB(204, 51, 51) and HSL(0°, 60%, 50%).

#CC3333 pairs strongly with #33CCCC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CC3333 is suitable for Text, Button, Accent and works well with Warm styles.

#CC3333 is commonly associated with Romantic.

The name Persian Red is linked to Persian Red from English, meaning A specific shade of red, reminiscent of pigments historically associated with Persia (modern-day Iran)..

Name, History & Etymology

Origin Word Persian Red
Meaning A specific shade of red, reminiscent of pigments historically associated with Persia (modern-day Iran).
Language English
First Recorded Use 19th Century

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.

Similar Named Colors

Amaranth Red #D3212D ΔE 1.81
Fire Engine Red #CE2029 ΔE 2.18
Jasper #D73B3E ΔE 3.39

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);
}