HEX: #E1F8DC
RGB: (225,248,220)
#E1F8DC contains red, green and blue colors in about the same proportion. Web safe color of #E1F8DC is #CCFFCC (or #CFC).
#E1F8DC color RGB value is (225,248,220).
RGB: (225,248,220) (88%,97%,86%)
R 225 of 255 = 88%
G 248 of 255 = 97%
B 220 of 255 = 86%
R + G + B ~ 90%. #E1F8DC is light color.
R + G + B =
225 + 248 + 220 = 693 (100%)
R 225 of 693 ~ 32.47%
G 248 of 693 ~ 35.79%
B 220 of 693 ~ 31.75%
#E1F8DC color CMYK value is (9,0,11,3).
CMYK: (9,0,11,3) C9M0Y11K3 (9%,0%,11%,3%) (0.09/0.00/0.11/0.03)
E1 | F8 | DC | |
---|---|---|---|
RGB | 225 | 248 | 220 |
HSL | 109° | 66.67% | 91.76% |
HSB/HSV | 109° | 11.29% | 97.25% |
CMYK | 9.27% | 0.00% | 11.29% |
2.75% |
HEX | E1 | F8 | DC |
Decimal | 225 | 248 | 220 |
Binary | 11100001 | 11111000 | 11011100 |
Octal | 341 | 370 | 334 |
Examples of css and html codes for elements with #E1F8DC color. Also use rgb(225,248,220) instead hex code.
.myTextColor { color: #E1F8DC; }
<p style="color:#E1F8DC">This sample text font color is #E1F8DC.</p>
This text font color is #E1F8DC.
.myBgColor { background-color: #E1F8DC; }
<div style="background-color:#E1F8DC">Inner text</div>
This div background color is #E1F8DC.
.myBorderColor { border: 1px solid #E1F8DC; }
<div style="border:3px solid #E1F8DC">Div</div>
This div border color is #E1F8DC.
.myOpacity80 { color: #E1F8DC; opacity: 0.8; }
<p style="color:#E1F8DC;opacity:0.8;">80%</p>
Text with #E1F8DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1F8DC;}
<p style="text-shadow: 3px 3px 1px #E1F8DC">Text here.</p>
This text has shadow with #E1F8DC color.
.textShadow {text-shadow: 3px 3px 1px #E1F8DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1F8DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1F8DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1F8DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1F8DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1F8DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1F8DC; -webkit-box-shadow: 1px 1px 3px 2px #E1F8DC; box-shadow: 1px 1px 3px 2px #E1F8DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1F8DC; -webkit-box-shadow: 1px 1px 3px 2px #E1F8DC; box-shadow:1px 1px 3px 2px #E1F8DC;">
Div content here</div>
This text has color #E1F8DC on black background.
This text has color #E1F8DC on white background.
This text has black color on #E1F8DC background.
This text has white color on #E1F8DC background.