HEX: #E2EFEC
RGB: (226,239,236)
#E2EFEC contains red, green and blue colors in about the same proportion. Web safe color of #E2EFEC is #CCFFFF (or #CFF).
#E2EFEC color RGB value is (226,239,236).
RGB: (226,239,236) (89%,94%,93%)
R 226 of 255 = 89%
G 239 of 255 = 94%
B 236 of 255 = 93%
R + G + B ~ 92%. #E2EFEC is light color.
R + G + B =
226 + 239 + 236 = 701 (100%)
R 226 of 701 ~ 32.24%
G 239 of 701 ~ 34.09%
B 236 of 701 ~ 33.67%
#E2EFEC color CMYK value is (5,0,1,6).
CMYK: (5,0,1,6) C5M0Y1K6 (5%,0%,1%,6%) (0.05/0.00/0.01/0.06)
E2 | EF | EC | |
---|---|---|---|
RGB | 226 | 239 | 236 |
HSL | 166° | 28.89% | 91.18% |
HSB/HSV | 166° | 5.44% | 93.73% |
CMYK | 5.44% | 0.00% | 1.26% |
6.27% |
HEX | E2 | EF | EC |
Decimal | 226 | 239 | 236 |
Binary | 11100010 | 11101111 | 11101100 |
Octal | 342 | 357 | 354 |
Examples of css and html codes for elements with #E2EFEC color. Also use rgb(226,239,236) instead hex code.
.myTextColor { color: #E2EFEC; }
<p style="color:#E2EFEC">This sample text font color is #E2EFEC.</p>
This text font color is #E2EFEC.
.myBgColor { background-color: #E2EFEC; }
<div style="background-color:#E2EFEC">Inner text</div>
This div background color is #E2EFEC.
.myBorderColor { border: 1px solid #E2EFEC; }
<div style="border:3px solid #E2EFEC">Div</div>
This div border color is #E2EFEC.
.myOpacity80 { color: #E2EFEC; opacity: 0.8; }
<p style="color:#E2EFEC;opacity:0.8;">80%</p>
Text with #E2EFEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2EFEC;}
<p style="text-shadow: 3px 3px 1px #E2EFEC">Text here.</p>
This text has shadow with #E2EFEC color.
.textShadow {text-shadow: 3px 3px 1px #E2EFEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2EFEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2EFEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2EFEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2EFEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2EFEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2EFEC; -webkit-box-shadow: 1px 1px 3px 2px #E2EFEC; box-shadow: 1px 1px 3px 2px #E2EFEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2EFEC; -webkit-box-shadow: 1px 1px 3px 2px #E2EFEC; box-shadow:1px 1px 3px 2px #E2EFEC;">
Div content here</div>
This text has color #E2EFEC on black background.
This text has color #E2EFEC on white background.
This text has black color on #E2EFEC background.
This text has white color on #E2EFEC background.