HEX: #BB4712
RGB: (187,71,18)
#BB4712 contains mainly red color. Web safe color of #BB4712 is #CC3300 (or #C30).
#BB4712 color RGB value is (187,71,18).
RGB: (187,71,18) (73%,28%,7%)
R 187 of 255 = 73%
G 71 of 255 = 28%
B 18 of 255 = 7%
R + G + B ~ 36%. #BB4712 is quite dark color.
R + G + B =
187 + 71 + 18 = 276 (100%)
R 187 of 276 ~ 67.75%
G 71 of 276 ~ 25.72%
B 18 of 276 ~ 6.52%
#BB4712 color CMYK value is (0,62,90,27).
CMYK: (0,62,90,27) C0M62Y90K27 (0%,62%,90%,27%) (0.00/0.62/0.90/0.27)
BB | 47 | 12 | |
---|---|---|---|
RGB | 187 | 71 | 18 |
HSL | 19° | 82.44% | 40.20% |
HSB/HSV | 19° | 90.37% | 73.33% |
CMYK | 0.00% | 62.03% | 90.37% |
26.67% |
HEX | BB | 47 | 12 |
Decimal | 187 | 71 | 18 |
Binary | 10111011 | 1000111 | 10010 |
Octal | 273 | 107 | 22 |
Examples of css and html codes for elements with #BB4712 color. Also use rgb(187,71,18) instead hex code.
.myTextColor { color: #BB4712; }
<p style="color:#BB4712">This sample text font color is #BB4712.</p>
This text font color is #BB4712.
.myBgColor { background-color: #BB4712; }
<div style="background-color:#BB4712">Inner text</div>
This div background color is #BB4712.
.myBorderColor { border: 1px solid #BB4712; }
<div style="border:3px solid #BB4712">Div</div>
This div border color is #BB4712.
.myOpacity80 { color: #BB4712; opacity: 0.8; }
<p style="color:#BB4712;opacity:0.8;">80%</p>
Text with #BB4712 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB4712;}
<p style="text-shadow: 3px 3px 1px #BB4712">Text here.</p>
This text has shadow with #BB4712 color.
.textShadow {text-shadow: 3px 3px 1px #BB4712, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB4712, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB4712 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB4712, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB4712, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB4712 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB4712; -webkit-box-shadow: 1px 1px 3px 2px #BB4712; box-shadow: 1px 1px 3px 2px #BB4712; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB4712; -webkit-box-shadow: 1px 1px 3px 2px #BB4712; box-shadow:1px 1px 3px 2px #BB4712;">
Div content here</div>
This text has color #BB4712 on black background.
This text has color #BB4712 on white background.
This text has black color on #BB4712 background.
This text has white color on #BB4712 background.