HEX: #B15334
RGB: (177,83,52)
#B15334 contains mainly red color. Web safe color of #B15334 is #996633 (or #963).
#B15334 color RGB value is (177,83,52).
RGB: (177,83,52) (69%,33%,20%)
R 177 of 255 = 69%
G 83 of 255 = 33%
B 52 of 255 = 20%
R + G + B ~ 41%. #B15334 is middle color (not dark and not light).
R + G + B =
177 + 83 + 52 = 312 (100%)
R 177 of 312 ~ 56.73%
G 83 of 312 ~ 26.6%
B 52 of 312 ~ 16.67%
#B15334 color CMYK value is (0,53,71,31).
CMYK: (0,53,71,31) C0M53Y71K31 (0%,53%,71%,31%) (0.00/0.53/0.71/0.31)
B1 | 53 | 34 | |
---|---|---|---|
RGB | 177 | 83 | 52 |
HSL | 15° | 54.59% | 44.90% |
HSB/HSV | 15° | 70.62% | 69.41% |
CMYK | 0.00% | 53.11% | 70.62% |
30.59% |
HEX | B1 | 53 | 34 |
Decimal | 177 | 83 | 52 |
Binary | 10110001 | 1010011 | 110100 |
Octal | 261 | 123 | 64 |
Examples of css and html codes for elements with #B15334 color. Also use rgb(177,83,52) instead hex code.
.myTextColor { color: #B15334; }
<p style="color:#B15334">This sample text font color is #B15334.</p>
This text font color is #B15334.
.myBgColor { background-color: #B15334; }
<div style="background-color:#B15334">Inner text</div>
This div background color is #B15334.
.myBorderColor { border: 1px solid #B15334; }
<div style="border:3px solid #B15334">Div</div>
This div border color is #B15334.
.myOpacity80 { color: #B15334; opacity: 0.8; }
<p style="color:#B15334;opacity:0.8;">80%</p>
Text with #B15334 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B15334;}
<p style="text-shadow: 3px 3px 1px #B15334">Text here.</p>
This text has shadow with #B15334 color.
.textShadow {text-shadow: 3px 3px 1px #B15334, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B15334, 5px 5px 20px red">Text here.</p>
This text has shadow with #B15334 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B15334, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B15334, Direction=45, Strength=4)">Text</p>
This text has shadow with #B15334 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B15334; -webkit-box-shadow: 1px 1px 3px 2px #B15334; box-shadow: 1px 1px 3px 2px #B15334; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B15334; -webkit-box-shadow: 1px 1px 3px 2px #B15334; box-shadow:1px 1px 3px 2px #B15334;">
Div content here</div>
This text has color #B15334 on black background.
This text has color #B15334 on white background.
This text has black color on #B15334 background.
This text has white color on #B15334 background.