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