HEX: #B4AFCB
RGB: (180,175,203)
#B4AFCB contains red, green and blue colors in about the same proportion. Web safe color of #B4AFCB is #CC99CC (or #C9C).
#B4AFCB color RGB value is (180,175,203).
RGB: (180,175,203) (71%,69%,80%)
R 180 of 255 = 71%
G 175 of 255 = 69%
B 203 of 255 = 80%
R + G + B ~ 73%. #B4AFCB is quite light color.
R + G + B =
180 + 175 + 203 = 558 (100%)
R 180 of 558 ~ 32.26%
G 175 of 558 ~ 31.36%
B 203 of 558 ~ 36.38%
#B4AFCB color CMYK value is (11,14,0,20).
CMYK: (11,14,0,20) C11M14Y0K20 (11%,14%,0%,20%) (0.11/0.14/0.00/0.20)
B4 | AF | CB | |
---|---|---|---|
RGB | 180 | 175 | 203 |
HSL | 251° | 21.21% | 74.12% |
HSB/HSV | 251° | 13.79% | 79.61% |
CMYK | 11.33% | 13.79% | 0.00% |
20.39% |
HEX | B4 | AF | CB |
Decimal | 180 | 175 | 203 |
Binary | 10110100 | 10101111 | 11001011 |
Octal | 264 | 257 | 313 |
Examples of css and html codes for elements with #B4AFCB color. Also use rgb(180,175,203) instead hex code.
.myTextColor { color: #B4AFCB; }
<p style="color:#B4AFCB">This sample text font color is #B4AFCB.</p>
This text font color is #B4AFCB.
.myBgColor { background-color: #B4AFCB; }
<div style="background-color:#B4AFCB">Inner text</div>
This div background color is #B4AFCB.
.myBorderColor { border: 1px solid #B4AFCB; }
<div style="border:3px solid #B4AFCB">Div</div>
This div border color is #B4AFCB.
.myOpacity80 { color: #B4AFCB; opacity: 0.8; }
<p style="color:#B4AFCB;opacity:0.8;">80%</p>
Text with #B4AFCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4AFCB;}
<p style="text-shadow: 3px 3px 1px #B4AFCB">Text here.</p>
This text has shadow with #B4AFCB color.
.textShadow {text-shadow: 3px 3px 1px #B4AFCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4AFCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4AFCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4AFCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4AFCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4AFCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4AFCB; -webkit-box-shadow: 1px 1px 3px 2px #B4AFCB; box-shadow: 1px 1px 3px 2px #B4AFCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4AFCB; -webkit-box-shadow: 1px 1px 3px 2px #B4AFCB; box-shadow:1px 1px 3px 2px #B4AFCB;">
Div content here</div>
This text has color #B4AFCB on black background.
This text has color #B4AFCB on white background.
This text has black color on #B4AFCB background.
This text has white color on #B4AFCB background.