HEX: #B6BDFB
RGB: (182,189,251)
#B6BDFB contains mainly blue color. Web safe color of #B6BDFB is #CCCCFF (or #CCF).
#B6BDFB color RGB value is (182,189,251).
RGB: (182,189,251) (71%,74%,98%)
R 182 of 255 = 71%
G 189 of 255 = 74%
B 251 of 255 = 98%
R + G + B ~ 81%. #B6BDFB is quite light color.
R + G + B =
182 + 189 + 251 = 622 (100%)
R 182 of 622 ~ 29.26%
G 189 of 622 ~ 30.39%
B 251 of 622 ~ 40.35%
#B6BDFB color CMYK value is (27,25,0,2).
CMYK: (27,25,0,2) C27M25Y0K2 (27%,25%,0%,2%) (0.27/0.25/0.00/0.02)
B6 | BD | FB | |
---|---|---|---|
RGB | 182 | 189 | 251 |
HSL | 234° | 89.61% | 84.90% |
HSB/HSV | 234° | 27.49% | 98.43% |
CMYK | 27.49% | 24.70% | 0.00% |
1.57% |
HEX | B6 | BD | FB |
Decimal | 182 | 189 | 251 |
Binary | 10110110 | 10111101 | 11111011 |
Octal | 266 | 275 | 373 |
Examples of css and html codes for elements with #B6BDFB color. Also use rgb(182,189,251) instead hex code.
.myTextColor { color: #B6BDFB; }
<p style="color:#B6BDFB">This sample text font color is #B6BDFB.</p>
This text font color is #B6BDFB.
.myBgColor { background-color: #B6BDFB; }
<div style="background-color:#B6BDFB">Inner text</div>
This div background color is #B6BDFB.
.myBorderColor { border: 1px solid #B6BDFB; }
<div style="border:3px solid #B6BDFB">Div</div>
This div border color is #B6BDFB.
.myOpacity80 { color: #B6BDFB; opacity: 0.8; }
<p style="color:#B6BDFB;opacity:0.8;">80%</p>
Text with #B6BDFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6BDFB;}
<p style="text-shadow: 3px 3px 1px #B6BDFB">Text here.</p>
This text has shadow with #B6BDFB color.
.textShadow {text-shadow: 3px 3px 1px #B6BDFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6BDFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6BDFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6BDFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6BDFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6BDFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6BDFB; -webkit-box-shadow: 1px 1px 3px 2px #B6BDFB; box-shadow: 1px 1px 3px 2px #B6BDFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6BDFB; -webkit-box-shadow: 1px 1px 3px 2px #B6BDFB; box-shadow:1px 1px 3px 2px #B6BDFB;">
Div content here</div>
This text has color #B6BDFB on black background.
This text has color #B6BDFB on white background.
This text has black color on #B6BDFB background.
This text has white color on #B6BDFB background.