HEX: #B6B3DC
RGB: (182,179,220)
#B6B3DC contains red, green and blue colors in about the same proportion. Web safe color of #B6B3DC is #CC99CC (or #C9C).
#B6B3DC color RGB value is (182,179,220).
RGB: (182,179,220) (71%,70%,86%)
R 182 of 255 = 71%
G 179 of 255 = 70%
B 220 of 255 = 86%
R + G + B ~ 76%. #B6B3DC is quite light color.
R + G + B =
182 + 179 + 220 = 581 (100%)
R 182 of 581 ~ 31.33%
G 179 of 581 ~ 30.81%
B 220 of 581 ~ 37.87%
#B6B3DC color CMYK value is (17,19,0,14).
CMYK: (17,19,0,14) C17M19Y0K14 (17%,19%,0%,14%) (0.17/0.19/0.00/0.14)
B6 | B3 | DC | |
---|---|---|---|
RGB | 182 | 179 | 220 |
HSL | 244° | 36.94% | 78.24% |
HSB/HSV | 244° | 18.64% | 86.27% |
CMYK | 17.27% | 18.64% | 0.00% |
13.73% |
HEX | B6 | B3 | DC |
Decimal | 182 | 179 | 220 |
Binary | 10110110 | 10110011 | 11011100 |
Octal | 266 | 263 | 334 |
Examples of css and html codes for elements with #B6B3DC color. Also use rgb(182,179,220) instead hex code.
.myTextColor { color: #B6B3DC; }
<p style="color:#B6B3DC">This sample text font color is #B6B3DC.</p>
This text font color is #B6B3DC.
.myBgColor { background-color: #B6B3DC; }
<div style="background-color:#B6B3DC">Inner text</div>
This div background color is #B6B3DC.
.myBorderColor { border: 1px solid #B6B3DC; }
<div style="border:3px solid #B6B3DC">Div</div>
This div border color is #B6B3DC.
.myOpacity80 { color: #B6B3DC; opacity: 0.8; }
<p style="color:#B6B3DC;opacity:0.8;">80%</p>
Text with #B6B3DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6B3DC;}
<p style="text-shadow: 3px 3px 1px #B6B3DC">Text here.</p>
This text has shadow with #B6B3DC color.
.textShadow {text-shadow: 3px 3px 1px #B6B3DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6B3DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6B3DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6B3DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6B3DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6B3DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6B3DC; -webkit-box-shadow: 1px 1px 3px 2px #B6B3DC; box-shadow: 1px 1px 3px 2px #B6B3DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6B3DC; -webkit-box-shadow: 1px 1px 3px 2px #B6B3DC; box-shadow:1px 1px 3px 2px #B6B3DC;">
Div content here</div>
This text has color #B6B3DC on black background.
This text has color #B6B3DC on white background.
This text has black color on #B6B3DC background.
This text has white color on #B6B3DC background.