HEX: #E1FDDD
RGB: (225,253,221)
#E1FDDD contains red, green and blue colors in about the same proportion. Web safe color of #E1FDDD is #CCFFCC (or #CFC).
#E1FDDD color RGB value is (225,253,221).
RGB: (225,253,221) (88%,99%,87%)
R 225 of 255 = 88%
G 253 of 255 = 99%
B 221 of 255 = 87%
R + G + B ~ 91%. #E1FDDD is light color.
R + G + B =
225 + 253 + 221 = 699 (100%)
R 225 of 699 ~ 32.19%
G 253 of 699 ~ 36.19%
B 221 of 699 ~ 31.62%
#E1FDDD color CMYK value is (11,0,13,1).
CMYK: (11,0,13,1) C11M0Y13K1 (11%,0%,13%,1%) (0.11/0.00/0.13/0.01)
E1 | FD | DD | |
---|---|---|---|
RGB | 225 | 253 | 221 |
HSL | 113° | 88.89% | 92.94% |
HSB/HSV | 113° | 12.65% | 99.22% |
CMYK | 11.07% | 0.00% | 12.65% |
0.78% |
HEX | E1 | FD | DD |
Decimal | 225 | 253 | 221 |
Binary | 11100001 | 11111101 | 11011101 |
Octal | 341 | 375 | 335 |
Examples of css and html codes for elements with #E1FDDD color. Also use rgb(225,253,221) instead hex code.
.myTextColor { color: #E1FDDD; }
<p style="color:#E1FDDD">This sample text font color is #E1FDDD.</p>
This text font color is #E1FDDD.
.myBgColor { background-color: #E1FDDD; }
<div style="background-color:#E1FDDD">Inner text</div>
This div background color is #E1FDDD.
.myBorderColor { border: 1px solid #E1FDDD; }
<div style="border:3px solid #E1FDDD">Div</div>
This div border color is #E1FDDD.
.myOpacity80 { color: #E1FDDD; opacity: 0.8; }
<p style="color:#E1FDDD;opacity:0.8;">80%</p>
Text with #E1FDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1FDDD;}
<p style="text-shadow: 3px 3px 1px #E1FDDD">Text here.</p>
This text has shadow with #E1FDDD color.
.textShadow {text-shadow: 3px 3px 1px #E1FDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1FDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1FDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1FDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1FDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1FDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1FDDD; -webkit-box-shadow: 1px 1px 3px 2px #E1FDDD; box-shadow: 1px 1px 3px 2px #E1FDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1FDDD; -webkit-box-shadow: 1px 1px 3px 2px #E1FDDD; box-shadow:1px 1px 3px 2px #E1FDDD;">
Div content here</div>
This text has color #E1FDDD on black background.
This text has color #E1FDDD on white background.
This text has black color on #E1FDDD background.
This text has white color on #E1FDDD background.