HEX: #BB9063
RGB: (187,144,99)
#BB9063 contains mainly red and green colors. Web safe color of #BB9063 is #CC9966 (or #C96).
#BB9063 color RGB value is (187,144,99).
RGB: (187,144,99) (73%,56%,39%)
R 187 of 255 = 73%
G 144 of 255 = 56%
B 99 of 255 = 39%
R + G + B ~ 56%. #BB9063 is middle color (not dark and not light).
R + G + B =
187 + 144 + 99 = 430 (100%)
R 187 of 430 ~ 43.49%
G 144 of 430 ~ 33.49%
B 99 of 430 ~ 23.02%
#BB9063 color CMYK value is (0,23,47,27).
CMYK: (0,23,47,27) C0M23Y47K27 (0%,23%,47%,27%) (0.00/0.23/0.47/0.27)
BB | 90 | 63 | |
---|---|---|---|
RGB | 187 | 144 | 99 |
HSL | 31° | 39.29% | 56.08% |
HSB/HSV | 31° | 47.06% | 73.33% |
CMYK | 0.00% | 22.99% | 47.06% |
26.67% |
HEX | BB | 90 | 63 |
Decimal | 187 | 144 | 99 |
Binary | 10111011 | 10010000 | 1100011 |
Octal | 273 | 220 | 143 |
Examples of css and html codes for elements with #BB9063 color. Also use rgb(187,144,99) instead hex code.
.myTextColor { color: #BB9063; }
<p style="color:#BB9063">This sample text font color is #BB9063.</p>
This text font color is #BB9063.
.myBgColor { background-color: #BB9063; }
<div style="background-color:#BB9063">Inner text</div>
This div background color is #BB9063.
.myBorderColor { border: 1px solid #BB9063; }
<div style="border:3px solid #BB9063">Div</div>
This div border color is #BB9063.
.myOpacity80 { color: #BB9063; opacity: 0.8; }
<p style="color:#BB9063;opacity:0.8;">80%</p>
Text with #BB9063 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB9063;}
<p style="text-shadow: 3px 3px 1px #BB9063">Text here.</p>
This text has shadow with #BB9063 color.
.textShadow {text-shadow: 3px 3px 1px #BB9063, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB9063, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB9063 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB9063, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB9063, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB9063 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB9063; -webkit-box-shadow: 1px 1px 3px 2px #BB9063; box-shadow: 1px 1px 3px 2px #BB9063; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB9063; -webkit-box-shadow: 1px 1px 3px 2px #BB9063; box-shadow:1px 1px 3px 2px #BB9063;">
Div content here</div>
This text has color #BB9063 on black background.
This text has color #BB9063 on white background.
This text has black color on #BB9063 background.
This text has white color on #BB9063 background.