HEX: #B6EDEE
RGB: (182,237,238)
#B6EDEE contains red, green and blue colors in about the same proportion. Web safe color of #B6EDEE is #CCFFFF (or #CFF).
#B6EDEE color RGB value is (182,237,238).
RGB: (182,237,238) (71%,93%,93%)
R 182 of 255 = 71%
G 237 of 255 = 93%
B 238 of 255 = 93%
R + G + B ~ 86%. #B6EDEE is light color.
R + G + B =
182 + 237 + 238 = 657 (100%)
R 182 of 657 ~ 27.7%
G 237 of 657 ~ 36.07%
B 238 of 657 ~ 36.23%
#B6EDEE color CMYK value is (24,0,0,7).
CMYK: (24,0,0,7) C24M0Y0K7 (24%,0%,0%,7%) (0.24/0.00/0.00/0.07)
B6 | ED | EE | |
---|---|---|---|
RGB | 182 | 237 | 238 |
HSL | 181° | 62.22% | 82.35% |
HSB/HSV | 181° | 23.53% | 93.33% |
CMYK | 23.53% | 0.42% | 0.00% |
6.67% |
HEX | B6 | ED | EE |
Decimal | 182 | 237 | 238 |
Binary | 10110110 | 11101101 | 11101110 |
Octal | 266 | 355 | 356 |
Examples of css and html codes for elements with #B6EDEE color. Also use rgb(182,237,238) instead hex code.
.myTextColor { color: #B6EDEE; }
<p style="color:#B6EDEE">This sample text font color is #B6EDEE.</p>
This text font color is #B6EDEE.
.myBgColor { background-color: #B6EDEE; }
<div style="background-color:#B6EDEE">Inner text</div>
This div background color is #B6EDEE.
.myBorderColor { border: 1px solid #B6EDEE; }
<div style="border:3px solid #B6EDEE">Div</div>
This div border color is #B6EDEE.
.myOpacity80 { color: #B6EDEE; opacity: 0.8; }
<p style="color:#B6EDEE;opacity:0.8;">80%</p>
Text with #B6EDEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6EDEE;}
<p style="text-shadow: 3px 3px 1px #B6EDEE">Text here.</p>
This text has shadow with #B6EDEE color.
.textShadow {text-shadow: 3px 3px 1px #B6EDEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6EDEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6EDEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6EDEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6EDEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6EDEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6EDEE; -webkit-box-shadow: 1px 1px 3px 2px #B6EDEE; box-shadow: 1px 1px 3px 2px #B6EDEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6EDEE; -webkit-box-shadow: 1px 1px 3px 2px #B6EDEE; box-shadow:1px 1px 3px 2px #B6EDEE;">
Div content here</div>
This text has color #B6EDEE on black background.
This text has color #B6EDEE on white background.
This text has black color on #B6EDEE background.
This text has white color on #B6EDEE background.