HEX: #B47682
RGB: (180,118,130)
#B47682 contains mainly red and blue colors. Web safe color of #B47682 is #CC6699 (or #C69).
#B47682 color RGB value is (180,118,130).
RGB: (180,118,130) (71%,46%,51%)
R 180 of 255 = 71%
G 118 of 255 = 46%
B 130 of 255 = 51%
R + G + B ~ 56%. #B47682 is middle color (not dark and not light).
R + G + B =
180 + 118 + 130 = 428 (100%)
R 180 of 428 ~ 42.06%
G 118 of 428 ~ 27.57%
B 130 of 428 ~ 30.37%
#B47682 color CMYK value is (0,34,28,29).
CMYK: (0,34,28,29) C0M34Y28K29 (0%,34%,28%,29%) (0.00/0.34/0.28/0.29)
B4 | 76 | 82 | |
---|---|---|---|
RGB | 180 | 118 | 130 |
HSL | 348° | 29.25% | 58.43% |
HSB/HSV | 348° | 34.44% | 70.59% |
CMYK | 0.00% | 34.44% | 27.78% |
29.41% |
HEX | B4 | 76 | 82 |
Decimal | 180 | 118 | 130 |
Binary | 10110100 | 1110110 | 10000010 |
Octal | 264 | 166 | 202 |
Examples of css and html codes for elements with #B47682 color. Also use rgb(180,118,130) instead hex code.
.myTextColor { color: #B47682; }
<p style="color:#B47682">This sample text font color is #B47682.</p>
This text font color is #B47682.
.myBgColor { background-color: #B47682; }
<div style="background-color:#B47682">Inner text</div>
This div background color is #B47682.
.myBorderColor { border: 1px solid #B47682; }
<div style="border:3px solid #B47682">Div</div>
This div border color is #B47682.
.myOpacity80 { color: #B47682; opacity: 0.8; }
<p style="color:#B47682;opacity:0.8;">80%</p>
Text with #B47682 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B47682;}
<p style="text-shadow: 3px 3px 1px #B47682">Text here.</p>
This text has shadow with #B47682 color.
.textShadow {text-shadow: 3px 3px 1px #B47682, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B47682, 5px 5px 20px red">Text here.</p>
This text has shadow with #B47682 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B47682, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B47682, Direction=45, Strength=4)">Text</p>
This text has shadow with #B47682 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B47682; -webkit-box-shadow: 1px 1px 3px 2px #B47682; box-shadow: 1px 1px 3px 2px #B47682; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B47682; -webkit-box-shadow: 1px 1px 3px 2px #B47682; box-shadow:1px 1px 3px 2px #B47682;">
Div content here</div>
This text has color #B47682 on black background.
This text has color #B47682 on white background.
This text has black color on #B47682 background.
This text has white color on #B47682 background.