HEX: #B4A0BB
RGB: (180,160,187)
#B4A0BB contains red, green and blue colors in about the same proportion. Web safe color of #B4A0BB is #CC99CC (or #C9C).
#B4A0BB color RGB value is (180,160,187).
RGB: (180,160,187) (71%,63%,73%)
R 180 of 255 = 71%
G 160 of 255 = 63%
B 187 of 255 = 73%
R + G + B ~ 69%. #B4A0BB is quite light color.
R + G + B =
180 + 160 + 187 = 527 (100%)
R 180 of 527 ~ 34.16%
G 160 of 527 ~ 30.36%
B 187 of 527 ~ 35.48%
#B4A0BB color CMYK value is (4,14,0,27).
CMYK: (4,14,0,27) C4M14Y0K27 (4%,14%,0%,27%) (0.04/0.14/0.00/0.27)
B4 | A0 | BB | |
---|---|---|---|
RGB | 180 | 160 | 187 |
HSL | 284° | 16.56% | 68.04% |
HSB/HSV | 284° | 14.44% | 73.33% |
CMYK | 3.74% | 14.44% | 0.00% |
26.67% |
HEX | B4 | A0 | BB |
Decimal | 180 | 160 | 187 |
Binary | 10110100 | 10100000 | 10111011 |
Octal | 264 | 240 | 273 |
Examples of css and html codes for elements with #B4A0BB color. Also use rgb(180,160,187) instead hex code.
.myTextColor { color: #B4A0BB; }
<p style="color:#B4A0BB">This sample text font color is #B4A0BB.</p>
This text font color is #B4A0BB.
.myBgColor { background-color: #B4A0BB; }
<div style="background-color:#B4A0BB">Inner text</div>
This div background color is #B4A0BB.
.myBorderColor { border: 1px solid #B4A0BB; }
<div style="border:3px solid #B4A0BB">Div</div>
This div border color is #B4A0BB.
.myOpacity80 { color: #B4A0BB; opacity: 0.8; }
<p style="color:#B4A0BB;opacity:0.8;">80%</p>
Text with #B4A0BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4A0BB;}
<p style="text-shadow: 3px 3px 1px #B4A0BB">Text here.</p>
This text has shadow with #B4A0BB color.
.textShadow {text-shadow: 3px 3px 1px #B4A0BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4A0BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4A0BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4A0BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4A0BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4A0BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4A0BB; -webkit-box-shadow: 1px 1px 3px 2px #B4A0BB; box-shadow: 1px 1px 3px 2px #B4A0BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4A0BB; -webkit-box-shadow: 1px 1px 3px 2px #B4A0BB; box-shadow:1px 1px 3px 2px #B4A0BB;">
Div content here</div>
This text has color #B4A0BB on black background.
This text has color #B4A0BB on white background.
This text has black color on #B4A0BB background.
This text has white color on #B4A0BB background.