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