HEX: #E4EDEA
RGB: (228,237,234)
#E4EDEA contains red, green and blue colors in about the same proportion. Web safe color of #E4EDEA is #CCFFFF (or #CFF).
#E4EDEA color RGB value is (228,237,234).
RGB: (228,237,234) (89%,93%,92%)
R 228 of 255 = 89%
G 237 of 255 = 93%
B 234 of 255 = 92%
R + G + B ~ 91%. #E4EDEA is light color.
R + G + B =
228 + 237 + 234 = 699 (100%)
R 228 of 699 ~ 32.62%
G 237 of 699 ~ 33.91%
B 234 of 699 ~ 33.48%
#E4EDEA color CMYK value is (4,0,1,7).
CMYK: (4,0,1,7) C4M0Y1K7 (4%,0%,1%,7%) (0.04/0.00/0.01/0.07)
E4 | ED | EA | |
---|---|---|---|
RGB | 228 | 237 | 234 |
HSL | 160° | 20.00% | 91.18% |
HSB/HSV | 160° | 3.80% | 92.94% |
CMYK | 3.80% | 0.00% | 1.27% |
7.06% |
HEX | E4 | ED | EA |
Decimal | 228 | 237 | 234 |
Binary | 11100100 | 11101101 | 11101010 |
Octal | 344 | 355 | 352 |
Examples of css and html codes for elements with #E4EDEA color. Also use rgb(228,237,234) instead hex code.
.myTextColor { color: #E4EDEA; }
<p style="color:#E4EDEA">This sample text font color is #E4EDEA.</p>
This text font color is #E4EDEA.
.myBgColor { background-color: #E4EDEA; }
<div style="background-color:#E4EDEA">Inner text</div>
This div background color is #E4EDEA.
.myBorderColor { border: 1px solid #E4EDEA; }
<div style="border:3px solid #E4EDEA">Div</div>
This div border color is #E4EDEA.
.myOpacity80 { color: #E4EDEA; opacity: 0.8; }
<p style="color:#E4EDEA;opacity:0.8;">80%</p>
Text with #E4EDEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4EDEA;}
<p style="text-shadow: 3px 3px 1px #E4EDEA">Text here.</p>
This text has shadow with #E4EDEA color.
.textShadow {text-shadow: 3px 3px 1px #E4EDEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4EDEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4EDEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4EDEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4EDEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4EDEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4EDEA; -webkit-box-shadow: 1px 1px 3px 2px #E4EDEA; box-shadow: 1px 1px 3px 2px #E4EDEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4EDEA; -webkit-box-shadow: 1px 1px 3px 2px #E4EDEA; box-shadow:1px 1px 3px 2px #E4EDEA;">
Div content here</div>
This text has color #E4EDEA on black background.
This text has color #E4EDEA on white background.
This text has black color on #E4EDEA background.
This text has white color on #E4EDEA background.