HEX: #B4ABCC
RGB: (180,171,204)
#B4ABCC contains red, green and blue colors in about the same proportion. Web safe color of #B4ABCC is #CC99CC (or #C9C).
#B4ABCC color RGB value is (180,171,204).
RGB: (180,171,204) (71%,67%,80%)
R 180 of 255 = 71%
G 171 of 255 = 67%
B 204 of 255 = 80%
R + G + B ~ 73%. #B4ABCC is quite light color.
R + G + B =
180 + 171 + 204 = 555 (100%)
R 180 of 555 ~ 32.43%
G 171 of 555 ~ 30.81%
B 204 of 555 ~ 36.76%
#B4ABCC color CMYK value is (12,16,0,20).
CMYK: (12,16,0,20) C12M16Y0K20 (12%,16%,0%,20%) (0.12/0.16/0.00/0.20)
B4 | AB | CC | |
---|---|---|---|
RGB | 180 | 171 | 204 |
HSL | 256° | 24.44% | 73.53% |
HSB/HSV | 256° | 16.18% | 80.00% |
CMYK | 11.76% | 16.18% | 0.00% |
20.00% |
HEX | B4 | AB | CC |
Decimal | 180 | 171 | 204 |
Binary | 10110100 | 10101011 | 11001100 |
Octal | 264 | 253 | 314 |
Examples of css and html codes for elements with #B4ABCC color. Also use rgb(180,171,204) instead hex code.
.myTextColor { color: #B4ABCC; }
<p style="color:#B4ABCC">This sample text font color is #B4ABCC.</p>
This text font color is #B4ABCC.
.myBgColor { background-color: #B4ABCC; }
<div style="background-color:#B4ABCC">Inner text</div>
This div background color is #B4ABCC.
.myBorderColor { border: 1px solid #B4ABCC; }
<div style="border:3px solid #B4ABCC">Div</div>
This div border color is #B4ABCC.
.myOpacity80 { color: #B4ABCC; opacity: 0.8; }
<p style="color:#B4ABCC;opacity:0.8;">80%</p>
Text with #B4ABCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4ABCC;}
<p style="text-shadow: 3px 3px 1px #B4ABCC">Text here.</p>
This text has shadow with #B4ABCC color.
.textShadow {text-shadow: 3px 3px 1px #B4ABCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4ABCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4ABCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4ABCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4ABCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4ABCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4ABCC; -webkit-box-shadow: 1px 1px 3px 2px #B4ABCC; box-shadow: 1px 1px 3px 2px #B4ABCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4ABCC; -webkit-box-shadow: 1px 1px 3px 2px #B4ABCC; box-shadow:1px 1px 3px 2px #B4ABCC;">
Div content here</div>
This text has color #B4ABCC on black background.
This text has color #B4ABCC on white background.
This text has black color on #B4ABCC background.
This text has white color on #B4ABCC background.