Razzmic Berry

HEX: #8D4E85 | Modern Palette

On White
5.90:1
PASS
On Black
3.56:1
FAIL

Color Specifications

HEX
#8D4E85
RGB
141, 78, 133
HSL
307°, 44% ,55%
CMYK
0, 44.68, 5.67, 44.71

About Razzmic Berry

Razzmic Berry (#8D4E85) is a color with RGB(141, 78, 133) and HSL(307.62°, 44.68%, 55.29%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #4E8D56, which creates strong contrast. Its triadic palette includes #858D4E and #4E858D. The name comes from Razzmic Berry (English (invented/compound)).

  • HEX: #8D4E85
  • RGB: 141, 78, 133
  • HSL: 307.62°, 44.68%, 55.29%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #4E8D56
  • Triadic colors: #858D4E, #4E858D
  • The name comes from Razzmic Berry (English (invented/compound)).

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 #8D4E85 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #656584
Protanopia #585885
Tritanopia #885757
Achromatopsia #646464

Frequently Asked Questions

Razzmic Berry (#8D4E85) is a color with RGB(141, 78, 133) and HSL(307.62°, 44.68%, 55.29%).

#8D4E85 pairs strongly with #4E8D56 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8D4E85 is suitable for Text, Logo, Print and works well with Warm styles.

#8D4E85 is commonly associated with Romantic.

The name Razzmic Berry is linked to Razzmic Berry from English (invented/compound), meaning A playful, portmanteau-like name suggesting a raspberry-flavored cosmic or 'jazzy' berry..

Name, History & Etymology

Origin Word Razzmic Berry
Meaning A playful, portmanteau-like name suggesting a raspberry-flavored cosmic or 'jazzy' berry.
Language English (invented/compound)
First Recorded Use 21st Century

History

The term 'Razzmic Berry' is not a naturally occurring word in English or any other language. It appears to be a modern, creative coinage, most commonly associated with: 1. **Food and Beverage Flavoring:** Particularly for candies, drinks, or desserts, where 'razz' evokes raspberry and 'mic' or 'cosmic' adds a playful, exciting, or unique dimension. 2. **Color Naming:** As seen in the request, it's used to describe a specific shade of purple/magenta. This practice of using evocative, often food-related, names for colors is common in cosmetics, fashion, and digital color palettes. The 'mic' part could be a truncation of 'cosmic' (implying out-of-this-world flavor/color) or a playful alteration of 'jazz' or 'razzmatazz' (implying vibrant and exciting). The 'berry' clearly refers to the fruit and its associated color.

First Recorded Use

Likely 2000s-present (as a creative name for products/flavors)

Cultural Associations

This type of name reflects a modern trend in marketing and branding to create unique, memorable, and often whimsical names for products, flavors, and colors. It aims to evoke a sense of fun, novelty, and a specific sensory experience (taste, sight). It's particularly prevalent in youth-oriented markets or products designed to be playful and vibrant.

Similar Named Colors

Plum #8E4585 ΔE 2.53
Antique Fuchsia #915C83 ΔE 5.18
French Lilac #86608E ΔE 6.15
Chinese Violet #856088 ΔE 6.34

Code Snippets

/* Background */
.element {
    background-color: #8D4E85;
}

/* Text */
.element {
    color: #8D4E85;
}

/* Border */
.element {
    border: 1px solid #8D4E85;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8D4E85,
        #5AC067
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8D4E85,
        #5AC067
    );
}

// SCSS variable
$razzmic-berry: #8D4E85;

// With RGB channels (useful for rgba() usage)
$razzmic-berry-r: 141;
$razzmic-berry-g: 78;
$razzmic-berry-b: 133;

// Usage
.element {
    background-color: $razzmic-berry;
    color: rgba($razzmic-berry-r, $razzmic-berry-g, $razzmic-berry-b, 0.8);
}