Bulgarian Rose

HEX: #480607 | Modern Palette

On White
16.10:1
PASS
On Black
1.30:1
FAIL

Color Specifications

HEX
#480607
RGB
72, 6, 7
HSL
359°, 91% ,28%
CMYK
0, 91.67, 90.28, 71.76

About Bulgarian Rose

Bulgarian Rose (#480607) is a color with RGB(72, 6, 7) and HSL(359.09°, 91.67%, 28.24%). It is commonly associated with Bold moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #064847, which creates strong contrast. Its triadic palette includes #074806 and #060748. The name comes from Bulgarian Rose (English (descriptive)).

  • HEX: #480607
  • RGB: 72, 6, 7
  • HSL: 359.09°, 91.67%, 28.24%
  • Mood: Bold
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #064847
  • Triadic colors: #074806, #060748
  • The name comes from Bulgarian Rose (English (descriptive)).

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

Color Characteristics

Mood
Bold
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #272702
Protanopia #171708
Tritanopia #480606
Achromatopsia #212121

Frequently Asked Questions

Bulgarian Rose (#480607) is a color with RGB(72, 6, 7) and HSL(359.09°, 91.67%, 28.24%).

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

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

#480607 is commonly associated with Bold.

The name Bulgarian Rose is linked to Bulgarian Rose from English (descriptive), meaning A rose variety primarily cultivated in Bulgaria, known for its fragrant oil..

Name, History & Etymology

Origin Word Bulgarian Rose
Meaning A rose variety primarily cultivated in Bulgaria, known for its fragrant oil.
Language English (descriptive)
First Recorded Use Late 19th - Early 20th Century

History

The cultivation of oil-bearing roses (Rosa damascena) in Bulgaria dates back to the 17th century, introduced likely from Persia via Turkey. The 'Rose Valley' near Kazanlak became the epicenter of this industry due to its ideal climate and soil. By the 19th century, Bulgarian rose oil was highly prized globally. The term 'Bulgarian Rose' became a brand identifier for this specific, high-quality rose oil and its associated products. The industry faced challenges during various historical periods, including wars and communist rule, but has largely maintained its reputation and production.

First Recorded Use

While roses have been cultivated in Bulgaria for centuries, the specific term 'Bulgarian Rose' to denote the particular oil-bearing varieties (Rosa damascena) and their products gained prominence as Bulgaria became a major exporter of rose oil. Early mentions in trade documents and botanical texts from the late 19th and early 20th centuries solidify its use.

Cultural Associations

The Bulgarian Rose is a national symbol of Bulgaria, deeply embedded in its culture, traditions, and economy. The annual Rose Festival in Kazanlak celebrates the harvest and the rose's significance. Rose oil (attar of roses) is a key ingredient in high-end perfumes, cosmetics, and even some traditional foods and liqueurs. The 'Bulgarian Rose' is not just a flower; it represents a centuries-old craft, a unique agricultural heritage, and a significant part of Bulgarian national identity.

Similar Named Colors

Black Bean #3D0C02 ΔE 3.58
French Puce #4E1609 ΔE 5.10
Dark Scarlet #560319 ΔE 5.50
Dark Sienna #3C1414 ΔE 5.67

Code Snippets

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

/* Text */
.element {
    color: #480607;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #480607,
        #068A88
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #480607,
        #068A88
    );
}

// SCSS variable
$bulgarian-rose: #480607;

// With RGB channels (useful for rgba() usage)
$bulgarian-rose-r: 72;
$bulgarian-rose-g: 6;
$bulgarian-rose-b: 7;

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