HEX: #E1FDAE
RGB: (225,253,174)
#E1FDAE contains mainly red and green colors. Web safe color of #E1FDAE is #CCFF99 (or #CF9).
#E1FDAE color RGB value is (225,253,174).
RGB: (225,253,174) (88%,99%,68%)
R 225 of 255 = 88%
G 253 of 255 = 99%
B 174 of 255 = 68%
R + G + B ~ 85%. #E1FDAE is quite light color.
R + G + B =
225 + 253 + 174 = 652 (100%)
R 225 of 652 ~ 34.51%
G 253 of 652 ~ 38.8%
B 174 of 652 ~ 26.69%
#E1FDAE color CMYK value is (11,0,31,1).
CMYK: (11,0,31,1) C11M0Y31K1 (11%,0%,31%,1%) (0.11/0.00/0.31/0.01)
E1 | FD | AE | |
---|---|---|---|
RGB | 225 | 253 | 174 |
HSL | 81° | 95.18% | 83.73% |
HSB/HSV | 81° | 31.23% | 99.22% |
CMYK | 11.07% | 0.00% | 31.23% |
0.78% |
HEX | E1 | FD | AE |
Decimal | 225 | 253 | 174 |
Binary | 11100001 | 11111101 | 10101110 |
Octal | 341 | 375 | 256 |
Examples of css and html codes for elements with #E1FDAE color. Also use rgb(225,253,174) instead hex code.
.myTextColor { color: #E1FDAE; }
<p style="color:#E1FDAE">This sample text font color is #E1FDAE.</p>
This text font color is #E1FDAE.
.myBgColor { background-color: #E1FDAE; }
<div style="background-color:#E1FDAE">Inner text</div>
This div background color is #E1FDAE.
.myBorderColor { border: 1px solid #E1FDAE; }
<div style="border:3px solid #E1FDAE">Div</div>
This div border color is #E1FDAE.
.myOpacity80 { color: #E1FDAE; opacity: 0.8; }
<p style="color:#E1FDAE;opacity:0.8;">80%</p>
Text with #E1FDAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1FDAE;}
<p style="text-shadow: 3px 3px 1px #E1FDAE">Text here.</p>
This text has shadow with #E1FDAE color.
.textShadow {text-shadow: 3px 3px 1px #E1FDAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1FDAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1FDAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1FDAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1FDAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1FDAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1FDAE; -webkit-box-shadow: 1px 1px 3px 2px #E1FDAE; box-shadow: 1px 1px 3px 2px #E1FDAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1FDAE; -webkit-box-shadow: 1px 1px 3px 2px #E1FDAE; box-shadow:1px 1px 3px 2px #E1FDAE;">
Div content here</div>
This text has color #E1FDAE on black background.
This text has color #E1FDAE on white background.
This text has black color on #E1FDAE background.
This text has white color on #E1FDAE background.