HEX: #BB8741
RGB: (187,135,65)
#BB8741 contains mainly red and green colors. Web safe color of #BB8741 is #CC9933 (or #C93).
#BB8741 color RGB value is (187,135,65).
RGB: (187,135,65) (73%,53%,25%)
R 187 of 255 = 73%
G 135 of 255 = 53%
B 65 of 255 = 25%
R + G + B ~ 50%. #BB8741 is middle color (not dark and not light).
R + G + B =
187 + 135 + 65 = 387 (100%)
R 187 of 387 ~ 48.32%
G 135 of 387 ~ 34.88%
B 65 of 387 ~ 16.8%
#BB8741 color CMYK value is (0,28,65,27).
CMYK: (0,28,65,27) C0M28Y65K27 (0%,28%,65%,27%) (0.00/0.28/0.65/0.27)
BB | 87 | 41 | |
---|---|---|---|
RGB | 187 | 135 | 65 |
HSL | 34° | 48.41% | 49.41% |
HSB/HSV | 34° | 65.24% | 73.33% |
CMYK | 0.00% | 27.81% | 65.24% |
26.67% |
HEX | BB | 87 | 41 |
Decimal | 187 | 135 | 65 |
Binary | 10111011 | 10000111 | 1000001 |
Octal | 273 | 207 | 101 |
Examples of css and html codes for elements with #BB8741 color. Also use rgb(187,135,65) instead hex code.
.myTextColor { color: #BB8741; }
<p style="color:#BB8741">This sample text font color is #BB8741.</p>
This text font color is #BB8741.
.myBgColor { background-color: #BB8741; }
<div style="background-color:#BB8741">Inner text</div>
This div background color is #BB8741.
.myBorderColor { border: 1px solid #BB8741; }
<div style="border:3px solid #BB8741">Div</div>
This div border color is #BB8741.
.myOpacity80 { color: #BB8741; opacity: 0.8; }
<p style="color:#BB8741;opacity:0.8;">80%</p>
Text with #BB8741 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB8741;}
<p style="text-shadow: 3px 3px 1px #BB8741">Text here.</p>
This text has shadow with #BB8741 color.
.textShadow {text-shadow: 3px 3px 1px #BB8741, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB8741, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB8741 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB8741, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB8741, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB8741 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB8741; -webkit-box-shadow: 1px 1px 3px 2px #BB8741; box-shadow: 1px 1px 3px 2px #BB8741; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB8741; -webkit-box-shadow: 1px 1px 3px 2px #BB8741; box-shadow:1px 1px 3px 2px #BB8741;">
Div content here</div>
This text has color #BB8741 on black background.
This text has color #BB8741 on white background.
This text has black color on #BB8741 background.
This text has white color on #BB8741 background.