Bulgarian Rose
HEX: #480607 | Modern Palette
Color Specifications
#480607
72, 6, 7
359°, 91% ,28%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}