Boysenberry
HEX: #873260 | Modern Palette
Color Specifications
#873260
135, 50, 96
327°, 62% ,52%
0, 62.96, 28.89, 47.06
About Boysenberry
Boysenberry (#873260) is a color with RGB(135, 50, 96) and HSL(327.53°, 62.96%, 52.94%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #328759, which creates strong contrast. Its triadic palette includes #608732 and #326087. The name comes from Boysenberry (English).
- HEX: #873260
- RGB: 135, 50, 96
- HSL: 327.53°, 62.96%, 52.94%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #328759
- Triadic colors: #608732, #326087
- The name comes from Boysenberry (English).
Live Components
Color Palettes
Boysenberry #873260 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
Boysenberry #873260 pairs with #328759 as its complementary color, and #608732 and #326087 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 boysenberry was developed by Rudolph Boysen, a Swedish immigrant and horticulturist, in the early 20th century in California. He cross-bred various berries, including the European raspberry, common blackberry, and loganberry. The exact parentage is debated, with some sources suggesting a dewberry might also be involved. Boysen abandoned his farm and the berry, but it was later rediscovered and cultivated by agriculturalist Walter Knott (of Knott's Berry Farm fame) in the 1930s. Knott commercialized the berry, and it quickly gained popularity.
First Recorded Use
Circa 1920s-1930s
Cultural Associations
The boysenberry is particularly famous in California, largely due to its association with Knott's Berry Farm, where it was a central ingredient in pies, jams, and other treats. It's known for its large size, deep maroon color, sweet-tart flavor, and juicy texture. While not as widely cultivated as blackberries or raspberries, it remains a beloved specialty berry, often used in preserves, desserts, and syrups.
Code Snippets
/* Background */
.element {
background-color: #873260;
}
/* Text */
.element {
color: #873260;
}
/* Border */
.element {
border: 1px solid #873260;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#873260,
#3BD381
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#873260,
#3BD381
);
}
// SCSS variable
$boysenberry: #873260;
// With RGB channels (useful for rgba() usage)
$boysenberry-r: 135;
$boysenberry-g: 50;
$boysenberry-b: 96;
// Usage
.element {
background-color: $boysenberry;
color: rgba($boysenberry-r, $boysenberry-g, $boysenberry-b, 0.8);
}