HEX: #E5FCEF
RGB: (229,252,239)
#E5FCEF contains red, green and blue colors in about the same proportion. Web safe color of #E5FCEF is #CCFFFF (or #CFF).
#E5FCEF color RGB value is (229,252,239).
RGB: (229,252,239) (90%,99%,94%)
R 229 of 255 = 90%
G 252 of 255 = 99%
B 239 of 255 = 94%
R + G + B ~ 94%. #E5FCEF is light color.
R + G + B =
229 + 252 + 239 = 720 (100%)
R 229 of 720 ~ 31.81%
G 252 of 720 ~ 35%
B 239 of 720 ~ 33.19%
#E5FCEF color CMYK value is (9,0,5,1).
CMYK: (9,0,5,1) C9M0Y5K1 (9%,0%,5%,1%) (0.09/0.00/0.05/0.01)
E5 | FC | EF | |
---|---|---|---|
RGB | 229 | 252 | 239 |
HSL | 146° | 79.31% | 94.31% |
HSB/HSV | 146° | 9.13% | 98.82% |
CMYK | 9.13% | 0.00% | 5.16% |
1.18% |
HEX | E5 | FC | EF |
Decimal | 229 | 252 | 239 |
Binary | 11100101 | 11111100 | 11101111 |
Octal | 345 | 374 | 357 |
Examples of css and html codes for elements with #E5FCEF color. Also use rgb(229,252,239) instead hex code.
.myTextColor { color: #E5FCEF; }
<p style="color:#E5FCEF">This sample text font color is #E5FCEF.</p>
This text font color is #E5FCEF.
.myBgColor { background-color: #E5FCEF; }
<div style="background-color:#E5FCEF">Inner text</div>
This div background color is #E5FCEF.
.myBorderColor { border: 1px solid #E5FCEF; }
<div style="border:3px solid #E5FCEF">Div</div>
This div border color is #E5FCEF.
.myOpacity80 { color: #E5FCEF; opacity: 0.8; }
<p style="color:#E5FCEF;opacity:0.8;">80%</p>
Text with #E5FCEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5FCEF;}
<p style="text-shadow: 3px 3px 1px #E5FCEF">Text here.</p>
This text has shadow with #E5FCEF color.
.textShadow {text-shadow: 3px 3px 1px #E5FCEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5FCEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5FCEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5FCEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5FCEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5FCEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5FCEF; -webkit-box-shadow: 1px 1px 3px 2px #E5FCEF; box-shadow: 1px 1px 3px 2px #E5FCEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5FCEF; -webkit-box-shadow: 1px 1px 3px 2px #E5FCEF; box-shadow:1px 1px 3px 2px #E5FCEF;">
Div content here</div>
This text has color #E5FCEF on black background.
This text has color #E5FCEF on white background.
This text has black color on #E5FCEF background.
This text has white color on #E5FCEF background.