HEX: #B16313
RGB: (177,99,19)
#B16313 contains mainly red color. Web safe color of #B16313 is #996600 (or #960).
#B16313 color RGB value is (177,99,19).
RGB: (177,99,19) (69%,39%,7%)
R 177 of 255 = 69%
G 99 of 255 = 39%
B 19 of 255 = 7%
R + G + B ~ 38%. #B16313 is quite dark color.
R + G + B =
177 + 99 + 19 = 295 (100%)
R 177 of 295 ~ 60%
G 99 of 295 ~ 33.56%
B 19 of 295 ~ 6.44%
#B16313 color CMYK value is (0,44,89,31).
CMYK: (0,44,89,31) C0M44Y89K31 (0%,44%,89%,31%) (0.00/0.44/0.89/0.31)
B1 | 63 | 13 | |
---|---|---|---|
RGB | 177 | 99 | 19 |
HSL | 30° | 80.61% | 38.43% |
HSB/HSV | 30° | 89.27% | 69.41% |
CMYK | 0.00% | 44.07% | 89.27% |
30.59% |
HEX | B1 | 63 | 13 |
Decimal | 177 | 99 | 19 |
Binary | 10110001 | 1100011 | 10011 |
Octal | 261 | 143 | 23 |
Examples of css and html codes for elements with #B16313 color. Also use rgb(177,99,19) instead hex code.
.myTextColor { color: #B16313; }
<p style="color:#B16313">This sample text font color is #B16313.</p>
This text font color is #B16313.
.myBgColor { background-color: #B16313; }
<div style="background-color:#B16313">Inner text</div>
This div background color is #B16313.
.myBorderColor { border: 1px solid #B16313; }
<div style="border:3px solid #B16313">Div</div>
This div border color is #B16313.
.myOpacity80 { color: #B16313; opacity: 0.8; }
<p style="color:#B16313;opacity:0.8;">80%</p>
Text with #B16313 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B16313;}
<p style="text-shadow: 3px 3px 1px #B16313">Text here.</p>
This text has shadow with #B16313 color.
.textShadow {text-shadow: 3px 3px 1px #B16313, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B16313, 5px 5px 20px red">Text here.</p>
This text has shadow with #B16313 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B16313, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B16313, Direction=45, Strength=4)">Text</p>
This text has shadow with #B16313 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B16313; -webkit-box-shadow: 1px 1px 3px 2px #B16313; box-shadow: 1px 1px 3px 2px #B16313; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B16313; -webkit-box-shadow: 1px 1px 3px 2px #B16313; box-shadow:1px 1px 3px 2px #B16313;">
Div content here</div>
This text has color #B16313 on black background.
This text has color #B16313 on white background.
This text has black color on #B16313 background.
This text has white color on #B16313 background.