HEX: #BB7B7C
RGB: (187,123,124)
#BB7B7C contains mainly red color. Web safe color of #BB7B7C is #CC6666 (or #C66).
#BB7B7C color RGB value is (187,123,124).
RGB: (187,123,124) (73%,48%,49%)
R 187 of 255 = 73%
G 123 of 255 = 48%
B 124 of 255 = 49%
R + G + B ~ 57%. #BB7B7C is middle color (not dark and not light).
R + G + B =
187 + 123 + 124 = 434 (100%)
R 187 of 434 ~ 43.09%
G 123 of 434 ~ 28.34%
B 124 of 434 ~ 28.57%
#BB7B7C color CMYK value is (0,34,34,27).
CMYK: (0,34,34,27) C0M34Y34K27 (0%,34%,34%,27%) (0.00/0.34/0.34/0.27)
BB | 7B | 7C | |
---|---|---|---|
RGB | 187 | 123 | 124 |
HSL | 359° | 32.00% | 60.78% |
HSB/HSV | 359° | 34.22% | 73.33% |
CMYK | 0.00% | 34.22% | 33.69% |
26.67% |
HEX | BB | 7B | 7C |
Decimal | 187 | 123 | 124 |
Binary | 10111011 | 1111011 | 1111100 |
Octal | 273 | 173 | 174 |
Examples of css and html codes for elements with #BB7B7C color. Also use rgb(187,123,124) instead hex code.
.myTextColor { color: #BB7B7C; }
<p style="color:#BB7B7C">This sample text font color is #BB7B7C.</p>
This text font color is #BB7B7C.
.myBgColor { background-color: #BB7B7C; }
<div style="background-color:#BB7B7C">Inner text</div>
This div background color is #BB7B7C.
.myBorderColor { border: 1px solid #BB7B7C; }
<div style="border:3px solid #BB7B7C">Div</div>
This div border color is #BB7B7C.
.myOpacity80 { color: #BB7B7C; opacity: 0.8; }
<p style="color:#BB7B7C;opacity:0.8;">80%</p>
Text with #BB7B7C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB7B7C;}
<p style="text-shadow: 3px 3px 1px #BB7B7C">Text here.</p>
This text has shadow with #BB7B7C color.
.textShadow {text-shadow: 3px 3px 1px #BB7B7C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB7B7C, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB7B7C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB7B7C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB7B7C, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB7B7C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB7B7C; -webkit-box-shadow: 1px 1px 3px 2px #BB7B7C; box-shadow: 1px 1px 3px 2px #BB7B7C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB7B7C; -webkit-box-shadow: 1px 1px 3px 2px #BB7B7C; box-shadow:1px 1px 3px 2px #BB7B7C;">
Div content here</div>
This text has color #BB7B7C on black background.
This text has color #BB7B7C on white background.
This text has black color on #BB7B7C background.
This text has white color on #BB7B7C background.