HEX: #E6EBFB
RGB: (230,235,251)
#E6EBFB contains red, green and blue colors in about the same proportion. Web safe color of #E6EBFB is #CCFFFF (or #CFF).
#E6EBFB color RGB value is (230,235,251).
RGB: (230,235,251) (90%,92%,98%)
R 230 of 255 = 90%
G 235 of 255 = 92%
B 251 of 255 = 98%
R + G + B ~ 93%. #E6EBFB is light color.
R + G + B =
230 + 235 + 251 = 716 (100%)
R 230 of 716 ~ 32.12%
G 235 of 716 ~ 32.82%
B 251 of 716 ~ 35.06%
#E6EBFB color CMYK value is (8,6,0,2).
CMYK: (8,6,0,2) C8M6Y0K2 (8%,6%,0%,2%) (0.08/0.06/0.00/0.02)
E6 | EB | FB | |
---|---|---|---|
RGB | 230 | 235 | 251 |
HSL | 226° | 72.41% | 94.31% |
HSB/HSV | 226° | 8.37% | 98.43% |
CMYK | 8.37% | 6.37% | 0.00% |
1.57% |
HEX | E6 | EB | FB |
Decimal | 230 | 235 | 251 |
Binary | 11100110 | 11101011 | 11111011 |
Octal | 346 | 353 | 373 |
Examples of css and html codes for elements with #E6EBFB color. Also use rgb(230,235,251) instead hex code.
.myTextColor { color: #E6EBFB; }
<p style="color:#E6EBFB">This sample text font color is #E6EBFB.</p>
This text font color is #E6EBFB.
.myBgColor { background-color: #E6EBFB; }
<div style="background-color:#E6EBFB">Inner text</div>
This div background color is #E6EBFB.
.myBorderColor { border: 1px solid #E6EBFB; }
<div style="border:3px solid #E6EBFB">Div</div>
This div border color is #E6EBFB.
.myOpacity80 { color: #E6EBFB; opacity: 0.8; }
<p style="color:#E6EBFB;opacity:0.8;">80%</p>
Text with #E6EBFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6EBFB;}
<p style="text-shadow: 3px 3px 1px #E6EBFB">Text here.</p>
This text has shadow with #E6EBFB color.
.textShadow {text-shadow: 3px 3px 1px #E6EBFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6EBFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6EBFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6EBFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6EBFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6EBFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6EBFB; -webkit-box-shadow: 1px 1px 3px 2px #E6EBFB; box-shadow: 1px 1px 3px 2px #E6EBFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6EBFB; -webkit-box-shadow: 1px 1px 3px 2px #E6EBFB; box-shadow:1px 1px 3px 2px #E6EBFB;">
Div content here</div>
This text has color #E6EBFB on black background.
This text has color #E6EBFB on white background.
This text has black color on #E6EBFB background.
This text has white color on #E6EBFB background.