HEX: #BB9C73
RGB: (187,156,115)
#BB9C73 contains mainly red and green colors. Web safe color of #BB9C73 is #CC9966 (or #C96).
#BB9C73 color RGB value is (187,156,115).
RGB: (187,156,115) (73%,61%,45%)
R 187 of 255 = 73%
G 156 of 255 = 61%
B 115 of 255 = 45%
R + G + B ~ 60%. #BB9C73 is middle color (not dark and not light).
R + G + B =
187 + 156 + 115 = 458 (100%)
R 187 of 458 ~ 40.83%
G 156 of 458 ~ 34.06%
B 115 of 458 ~ 25.11%
#BB9C73 color CMYK value is (0,17,39,27).
CMYK: (0,17,39,27) C0M17Y39K27 (0%,17%,39%,27%) (0.00/0.17/0.39/0.27)
BB | 9C | 73 | |
---|---|---|---|
RGB | 187 | 156 | 115 |
HSL | 34° | 34.62% | 59.22% |
HSB/HSV | 34° | 38.50% | 73.33% |
CMYK | 0.00% | 16.58% | 38.50% |
26.67% |
HEX | BB | 9C | 73 |
Decimal | 187 | 156 | 115 |
Binary | 10111011 | 10011100 | 1110011 |
Octal | 273 | 234 | 163 |
Examples of css and html codes for elements with #BB9C73 color. Also use rgb(187,156,115) instead hex code.
.myTextColor { color: #BB9C73; }
<p style="color:#BB9C73">This sample text font color is #BB9C73.</p>
This text font color is #BB9C73.
.myBgColor { background-color: #BB9C73; }
<div style="background-color:#BB9C73">Inner text</div>
This div background color is #BB9C73.
.myBorderColor { border: 1px solid #BB9C73; }
<div style="border:3px solid #BB9C73">Div</div>
This div border color is #BB9C73.
.myOpacity80 { color: #BB9C73; opacity: 0.8; }
<p style="color:#BB9C73;opacity:0.8;">80%</p>
Text with #BB9C73 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB9C73;}
<p style="text-shadow: 3px 3px 1px #BB9C73">Text here.</p>
This text has shadow with #BB9C73 color.
.textShadow {text-shadow: 3px 3px 1px #BB9C73, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB9C73, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB9C73 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB9C73, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB9C73, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB9C73 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB9C73; -webkit-box-shadow: 1px 1px 3px 2px #BB9C73; box-shadow: 1px 1px 3px 2px #BB9C73; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB9C73; -webkit-box-shadow: 1px 1px 3px 2px #BB9C73; box-shadow:1px 1px 3px 2px #BB9C73;">
Div content here</div>
This text has color #BB9C73 on black background.
This text has color #BB9C73 on white background.
This text has black color on #BB9C73 background.
This text has white color on #BB9C73 background.