HEX: #B6ADCD
RGB: (182,173,205)
#B6ADCD contains red, green and blue colors in about the same proportion. Web safe color of #B6ADCD is #CC99CC (or #C9C).
#B6ADCD color RGB value is (182,173,205).
RGB: (182,173,205) (71%,68%,80%)
R 182 of 255 = 71%
G 173 of 255 = 68%
B 205 of 255 = 80%
R + G + B ~ 73%. #B6ADCD is quite light color.
R + G + B =
182 + 173 + 205 = 560 (100%)
R 182 of 560 ~ 32.5%
G 173 of 560 ~ 30.89%
B 205 of 560 ~ 36.61%
#B6ADCD 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)
B6 | AD | CD | |
---|---|---|---|
RGB | 182 | 173 | 205 |
HSL | 257° | 24.24% | 74.12% |
HSB/HSV | 257° | 15.61% | 80.39% |
CMYK | 11.22% | 15.61% | 0.00% |
19.61% |
HEX | B6 | AD | CD |
Decimal | 182 | 173 | 205 |
Binary | 10110110 | 10101101 | 11001101 |
Octal | 266 | 255 | 315 |
Examples of css and html codes for elements with #B6ADCD color. Also use rgb(182,173,205) instead hex code.
.myTextColor { color: #B6ADCD; }
<p style="color:#B6ADCD">This sample text font color is #B6ADCD.</p>
This text font color is #B6ADCD.
.myBgColor { background-color: #B6ADCD; }
<div style="background-color:#B6ADCD">Inner text</div>
This div background color is #B6ADCD.
.myBorderColor { border: 1px solid #B6ADCD; }
<div style="border:3px solid #B6ADCD">Div</div>
This div border color is #B6ADCD.
.myOpacity80 { color: #B6ADCD; opacity: 0.8; }
<p style="color:#B6ADCD;opacity:0.8;">80%</p>
Text with #B6ADCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6ADCD;}
<p style="text-shadow: 3px 3px 1px #B6ADCD">Text here.</p>
This text has shadow with #B6ADCD color.
.textShadow {text-shadow: 3px 3px 1px #B6ADCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6ADCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6ADCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6ADCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6ADCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6ADCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6ADCD; -webkit-box-shadow: 1px 1px 3px 2px #B6ADCD; box-shadow: 1px 1px 3px 2px #B6ADCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6ADCD; -webkit-box-shadow: 1px 1px 3px 2px #B6ADCD; box-shadow:1px 1px 3px 2px #B6ADCD;">
Div content here</div>
This text has color #B6ADCD on black background.
This text has color #B6ADCD on white background.
This text has black color on #B6ADCD background.
This text has white color on #B6ADCD background.