Rosy Brown
HEX: #BC8F8F | Modern Palette
Color Specifications
#BC8F8F
188, 143, 143
0°, 25% ,64%
0, 24, 24, 26
About Rosy Brown
Rosy Brown (#BC8F8F) is a color with RGB(188, 143, 143) and HSL(0°, 25.1%, 64.9%). In design, it fits Muted, Warm styles and is suitable for Text, Border, Print. Its complementary color is #8FBCBC, which creates strong contrast. Its triadic palette includes Dark Sea Green (#8FBC8F) and #8F8FBC. The name comes from Rosy Brown (English).
- HEX: #BC8F8F
- RGB: 188, 143, 143
- HSL: 0°, 25.1%, 64.9%
- Style: Muted, Warm
- Use case: Text, Border, Print
- Complementary color: #8FBCBC
- Triadic colors: Dark Sea Green (#8FBC8F), #8F8FBC
- The name comes from Rosy Brown (English).
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 #BC8F8F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'rosy brown' combines two common color descriptors: 'rosy' (referring to the color of a rose, typically pink or light red) and 'brown'. This combination suggests a brown with a distinct reddish or pinkish undertone. Its formal recognition as a distinct color name, often with a specific hexadecimal value like #bc8f8f, became more prevalent with the advent of digital color systems and web standards. It is part of the X11 color set.
First Recorded Use
The term 'rosy brown' as a specific color name, particularly in a standardized context, gained traction with the development of color systems and guides. It was notably included in the ISCC-NBS Dictionary of Color Names (1955), but descriptive uses of 'rosy brown' likely predate this formalization.
Cultural Associations
As a descriptive color, 'rosy brown' evokes natural elements like certain types of wood, dried roses, or earthy tones with a warm blush. It's often perceived as a soft, muted, and warm color. It can be associated with vintage aesthetics, natural dyes, or a cozy, inviting atmosphere. It's less common in high-fashion or bold statements and more often found in home decor, textiles, and naturalistic art.
Code Snippets
/* Background */
.element {
background-color: #BC8F8F;
}
/* Text */
.element {
color: #BC8F8F;
}
/* Border */
.element {
border: 1px solid #BC8F8F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BC8F8F,
#8FBCBC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BC8F8F,
#8FBCBC
);
}
// SCSS variable
$rosy-brown: #BC8F8F;
// With RGB channels (useful for rgba() usage)
$rosy-brown-r: 188;
$rosy-brown-g: 143;
$rosy-brown-b: 143;
// Usage
.element {
background-color: $rosy-brown;
color: rgba($rosy-brown-r, $rosy-brown-g, $rosy-brown-b, 0.8);
}