HEX: #B47476
RGB: (180,116,118)
#B47476 contains mainly red color. Web safe color of #B47476 is #CC6666 (or #C66).
#B47476 color RGB value is (180,116,118).
RGB: (180,116,118) (71%,45%,46%)
R 180 of 255 = 71%
G 116 of 255 = 45%
B 118 of 255 = 46%
R + G + B ~ 54%. #B47476 is middle color (not dark and not light).
R + G + B =
180 + 116 + 118 = 414 (100%)
R 180 of 414 ~ 43.48%
G 116 of 414 ~ 28.02%
B 118 of 414 ~ 28.5%
#B47476 color CMYK value is (0,36,34,29).
CMYK: (0,36,34,29) C0M36Y34K29 (0%,36%,34%,29%) (0.00/0.36/0.34/0.29)
B4 | 74 | 76 | |
---|---|---|---|
RGB | 180 | 116 | 118 |
HSL | 358° | 29.91% | 58.04% |
HSB/HSV | 358° | 35.56% | 70.59% |
CMYK | 0.00% | 35.56% | 34.44% |
29.41% |
HEX | B4 | 74 | 76 |
Decimal | 180 | 116 | 118 |
Binary | 10110100 | 1110100 | 1110110 |
Octal | 264 | 164 | 166 |
Examples of css and html codes for elements with #B47476 color. Also use rgb(180,116,118) instead hex code.
.myTextColor { color: #B47476; }
<p style="color:#B47476">This sample text font color is #B47476.</p>
This text font color is #B47476.
.myBgColor { background-color: #B47476; }
<div style="background-color:#B47476">Inner text</div>
This div background color is #B47476.
.myBorderColor { border: 1px solid #B47476; }
<div style="border:3px solid #B47476">Div</div>
This div border color is #B47476.
.myOpacity80 { color: #B47476; opacity: 0.8; }
<p style="color:#B47476;opacity:0.8;">80%</p>
Text with #B47476 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B47476;}
<p style="text-shadow: 3px 3px 1px #B47476">Text here.</p>
This text has shadow with #B47476 color.
.textShadow {text-shadow: 3px 3px 1px #B47476, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B47476, 5px 5px 20px red">Text here.</p>
This text has shadow with #B47476 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B47476, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B47476, Direction=45, Strength=4)">Text</p>
This text has shadow with #B47476 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B47476; -webkit-box-shadow: 1px 1px 3px 2px #B47476; box-shadow: 1px 1px 3px 2px #B47476; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B47476; -webkit-box-shadow: 1px 1px 3px 2px #B47476; box-shadow:1px 1px 3px 2px #B47476;">
Div content here</div>
This text has color #B47476 on black background.
This text has color #B47476 on white background.
This text has black color on #B47476 background.
This text has white color on #B47476 background.