Rebecca Purple
HEX: #663399 | Modern Palette
Color Specifications
#663399
102, 51, 153
270°, 66% ,60%
33.33, 66.67, 0, 40
About Rebecca Purple
Rebecca Purple (#663399) is a color with RGB(102, 51, 153) and HSL(270°, 66.67%, 60%). It is commonly associated with Playful, Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #669933, which creates strong contrast. Its triadic palette includes #996633 and #339966. The name comes from Rebecca Purple (English).
- HEX: #663399
- RGB: 102, 51, 153
- HSL: 270°, 66.67%, 60%
- Mood: Playful, Romantic
- Use case: Text, Button, Accent
- Complementary color: #669933
- Triadic colors: #996633, #339966
- The name comes from Rebecca Purple (English).
Live Components
Color Palettes
Rebecca Purple #663399 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
Rebecca Purple #663399 pairs with #669933 as its complementary color, and #996633 and #339966 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
Name, History & Etymology
History
Rebecca Purple is a specific shade of purple (#663399) that was added to the CSS Color Module Level 4 specification. It was named by Eric Meyer in memory of his daughter, Rebecca Meyer, who passed away in June 2014 at the age of six. The color was proposed and quickly adopted by the web standards community as a tribute. It is a unique case of a color being added to a web standard with such a personal and poignant origin.
First Recorded Use
June 2014
Cultural Associations
Within the web development and design community, Rebecca Purple holds significant emotional weight. It serves as a subtle, yet powerful, reminder of the human element behind technology and standards. Its adoption was a gesture of solidarity and respect for Eric Meyer, a highly influential figure in web standards and CSS. It's often referenced in discussions about web history and community support.
Code Snippets
/* Background */
.element {
background-color: #663399;
}
/* Text */
.element {
color: #663399;
}
/* Border */
.element {
border: 1px solid #663399;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#663399,
#99DD55
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#663399,
#99DD55
);
}
// SCSS variable
$rebecca-purple: #663399;
// With RGB channels (useful for rgba() usage)
$rebecca-purple-r: 102;
$rebecca-purple-g: 51;
$rebecca-purple-b: 153;
// Usage
.element {
background-color: $rebecca-purple;
color: rgba($rebecca-purple-r, $rebecca-purple-g, $rebecca-purple-b, 0.8);
}