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