HEX: #B4A4CB
RGB: (180,164,203)
#B4A4CB contains red, green and blue colors in about the same proportion. Web safe color of #B4A4CB is #CC99CC (or #C9C).
#B4A4CB color RGB value is (180,164,203).
RGB: (180,164,203) (71%,64%,80%)
R 180 of 255 = 71%
G 164 of 255 = 64%
B 203 of 255 = 80%
R + G + B ~ 72%. #B4A4CB is quite light color.
R + G + B =
180 + 164 + 203 = 547 (100%)
R 180 of 547 ~ 32.91%
G 164 of 547 ~ 29.98%
B 203 of 547 ~ 37.11%
#B4A4CB color CMYK value is (11,19,0,20).
CMYK: (11,19,0,20) C11M19Y0K20 (11%,19%,0%,20%) (0.11/0.19/0.00/0.20)
B4 | A4 | CB | |
---|---|---|---|
RGB | 180 | 164 | 203 |
HSL | 265° | 27.27% | 71.96% |
HSB/HSV | 265° | 19.21% | 79.61% |
CMYK | 11.33% | 19.21% | 0.00% |
20.39% |
HEX | B4 | A4 | CB |
Decimal | 180 | 164 | 203 |
Binary | 10110100 | 10100100 | 11001011 |
Octal | 264 | 244 | 313 |
Examples of css and html codes for elements with #B4A4CB color. Also use rgb(180,164,203) instead hex code.
.myTextColor { color: #B4A4CB; }
<p style="color:#B4A4CB">This sample text font color is #B4A4CB.</p>
This text font color is #B4A4CB.
.myBgColor { background-color: #B4A4CB; }
<div style="background-color:#B4A4CB">Inner text</div>
This div background color is #B4A4CB.
.myBorderColor { border: 1px solid #B4A4CB; }
<div style="border:3px solid #B4A4CB">Div</div>
This div border color is #B4A4CB.
.myOpacity80 { color: #B4A4CB; opacity: 0.8; }
<p style="color:#B4A4CB;opacity:0.8;">80%</p>
Text with #B4A4CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4A4CB;}
<p style="text-shadow: 3px 3px 1px #B4A4CB">Text here.</p>
This text has shadow with #B4A4CB color.
.textShadow {text-shadow: 3px 3px 1px #B4A4CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4A4CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4A4CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4A4CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4A4CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4A4CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4A4CB; -webkit-box-shadow: 1px 1px 3px 2px #B4A4CB; box-shadow: 1px 1px 3px 2px #B4A4CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4A4CB; -webkit-box-shadow: 1px 1px 3px 2px #B4A4CB; box-shadow:1px 1px 3px 2px #B4A4CB;">
Div content here</div>
This text has color #B4A4CB on black background.
This text has color #B4A4CB on white background.
This text has black color on #B4A4CB background.
This text has white color on #B4A4CB background.