HEX: #E4FAE2
RGB: (228,250,226)
#E4FAE2 contains red, green and blue colors in about the same proportion. Web safe color of #E4FAE2 is #CCFFCC (or #CFC).
#E4FAE2 color RGB value is (228,250,226).
RGB: (228,250,226) (89%,98%,89%)
R 228 of 255 = 89%
G 250 of 255 = 98%
B 226 of 255 = 89%
R + G + B ~ 92%. #E4FAE2 is light color.
R + G + B =
228 + 250 + 226 = 704 (100%)
R 228 of 704 ~ 32.39%
G 250 of 704 ~ 35.51%
B 226 of 704 ~ 32.1%
#E4FAE2 color CMYK value is (9,0,10,2).
CMYK: (9,0,10,2) C9M0Y10K2 (9%,0%,10%,2%) (0.09/0.00/0.10/0.02)
E4 | FA | E2 | |
---|---|---|---|
RGB | 228 | 250 | 226 |
HSL | 115° | 70.59% | 93.33% |
HSB/HSV | 115° | 9.60% | 98.04% |
CMYK | 8.80% | 0.00% | 9.60% |
1.96% |
HEX | E4 | FA | E2 |
Decimal | 228 | 250 | 226 |
Binary | 11100100 | 11111010 | 11100010 |
Octal | 344 | 372 | 342 |
Examples of css and html codes for elements with #E4FAE2 color. Also use rgb(228,250,226) instead hex code.
.myTextColor { color: #E4FAE2; }
<p style="color:#E4FAE2">This sample text font color is #E4FAE2.</p>
This text font color is #E4FAE2.
.myBgColor { background-color: #E4FAE2; }
<div style="background-color:#E4FAE2">Inner text</div>
This div background color is #E4FAE2.
.myBorderColor { border: 1px solid #E4FAE2; }
<div style="border:3px solid #E4FAE2">Div</div>
This div border color is #E4FAE2.
.myOpacity80 { color: #E4FAE2; opacity: 0.8; }
<p style="color:#E4FAE2;opacity:0.8;">80%</p>
Text with #E4FAE2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4FAE2;}
<p style="text-shadow: 3px 3px 1px #E4FAE2">Text here.</p>
This text has shadow with #E4FAE2 color.
.textShadow {text-shadow: 3px 3px 1px #E4FAE2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4FAE2, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4FAE2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4FAE2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4FAE2, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4FAE2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4FAE2; -webkit-box-shadow: 1px 1px 3px 2px #E4FAE2; box-shadow: 1px 1px 3px 2px #E4FAE2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4FAE2; -webkit-box-shadow: 1px 1px 3px 2px #E4FAE2; box-shadow:1px 1px 3px 2px #E4FAE2;">
Div content here</div>
This text has color #E4FAE2 on black background.
This text has color #E4FAE2 on white background.
This text has black color on #E4FAE2 background.
This text has white color on #E4FAE2 background.