HEX: #B1ADCB
RGB: (177,173,203)
#B1ADCB contains red, green and blue colors in about the same proportion. Web safe color of #B1ADCB is #9999CC (or #99C).
#B1ADCB color RGB value is (177,173,203).
RGB: (177,173,203) (69%,68%,80%)
R 177 of 255 = 69%
G 173 of 255 = 68%
B 203 of 255 = 80%
R + G + B ~ 72%. #B1ADCB is quite light color.
R + G + B =
177 + 173 + 203 = 553 (100%)
R 177 of 553 ~ 32.01%
G 173 of 553 ~ 31.28%
B 203 of 553 ~ 36.71%
#B1ADCB color CMYK value is (13,15,0,20).
CMYK: (13,15,0,20) C13M15Y0K20 (13%,15%,0%,20%) (0.13/0.15/0.00/0.20)
B1 | AD | CB | |
---|---|---|---|
RGB | 177 | 173 | 203 |
HSL | 248° | 22.39% | 73.73% |
HSB/HSV | 248° | 14.78% | 79.61% |
CMYK | 12.81% | 14.78% | 0.00% |
20.39% |
HEX | B1 | AD | CB |
Decimal | 177 | 173 | 203 |
Binary | 10110001 | 10101101 | 11001011 |
Octal | 261 | 255 | 313 |
Examples of css and html codes for elements with #B1ADCB color. Also use rgb(177,173,203) instead hex code.
.myTextColor { color: #B1ADCB; }
<p style="color:#B1ADCB">This sample text font color is #B1ADCB.</p>
This text font color is #B1ADCB.
.myBgColor { background-color: #B1ADCB; }
<div style="background-color:#B1ADCB">Inner text</div>
This div background color is #B1ADCB.
.myBorderColor { border: 1px solid #B1ADCB; }
<div style="border:3px solid #B1ADCB">Div</div>
This div border color is #B1ADCB.
.myOpacity80 { color: #B1ADCB; opacity: 0.8; }
<p style="color:#B1ADCB;opacity:0.8;">80%</p>
Text with #B1ADCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1ADCB;}
<p style="text-shadow: 3px 3px 1px #B1ADCB">Text here.</p>
This text has shadow with #B1ADCB color.
.textShadow {text-shadow: 3px 3px 1px #B1ADCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1ADCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1ADCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1ADCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1ADCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1ADCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1ADCB; -webkit-box-shadow: 1px 1px 3px 2px #B1ADCB; box-shadow: 1px 1px 3px 2px #B1ADCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1ADCB; -webkit-box-shadow: 1px 1px 3px 2px #B1ADCB; box-shadow:1px 1px 3px 2px #B1ADCB;">
Div content here</div>
This text has color #B1ADCB on black background.
This text has color #B1ADCB on white background.
This text has black color on #B1ADCB background.
This text has white color on #B1ADCB background.