HEX: #B4A3BC
RGB: (180,163,188)
#B4A3BC contains red, green and blue colors in about the same proportion. Web safe color of #B4A3BC is #CC99CC (or #C9C).
#B4A3BC color RGB value is (180,163,188).
RGB: (180,163,188) (71%,64%,74%)
R 180 of 255 = 71%
G 163 of 255 = 64%
B 188 of 255 = 74%
R + G + B ~ 70%. #B4A3BC is quite light color.
R + G + B =
180 + 163 + 188 = 531 (100%)
R 180 of 531 ~ 33.9%
G 163 of 531 ~ 30.7%
B 188 of 531 ~ 35.4%
#B4A3BC color CMYK value is (4,13,0,26).
CMYK: (4,13,0,26) C4M13Y0K26 (4%,13%,0%,26%) (0.04/0.13/0.00/0.26)
B4 | A3 | BC | |
---|---|---|---|
RGB | 180 | 163 | 188 |
HSL | 281° | 15.72% | 68.82% |
HSB/HSV | 281° | 13.30% | 73.73% |
CMYK | 4.26% | 13.30% | 0.00% |
26.27% |
HEX | B4 | A3 | BC |
Decimal | 180 | 163 | 188 |
Binary | 10110100 | 10100011 | 10111100 |
Octal | 264 | 243 | 274 |
Examples of css and html codes for elements with #B4A3BC color. Also use rgb(180,163,188) instead hex code.
.myTextColor { color: #B4A3BC; }
<p style="color:#B4A3BC">This sample text font color is #B4A3BC.</p>
This text font color is #B4A3BC.
.myBgColor { background-color: #B4A3BC; }
<div style="background-color:#B4A3BC">Inner text</div>
This div background color is #B4A3BC.
.myBorderColor { border: 1px solid #B4A3BC; }
<div style="border:3px solid #B4A3BC">Div</div>
This div border color is #B4A3BC.
.myOpacity80 { color: #B4A3BC; opacity: 0.8; }
<p style="color:#B4A3BC;opacity:0.8;">80%</p>
Text with #B4A3BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4A3BC;}
<p style="text-shadow: 3px 3px 1px #B4A3BC">Text here.</p>
This text has shadow with #B4A3BC color.
.textShadow {text-shadow: 3px 3px 1px #B4A3BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4A3BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4A3BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4A3BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4A3BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4A3BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4A3BC; -webkit-box-shadow: 1px 1px 3px 2px #B4A3BC; box-shadow: 1px 1px 3px 2px #B4A3BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4A3BC; -webkit-box-shadow: 1px 1px 3px 2px #B4A3BC; box-shadow:1px 1px 3px 2px #B4A3BC;">
Div content here</div>
This text has color #B4A3BC on black background.
This text has color #B4A3BC on white background.
This text has black color on #B4A3BC background.
This text has white color on #B4A3BC background.