HEX: #E5FFFD
RGB: (229,255,253)
#E5FFFD contains red, green and blue colors in about the same proportion. Web safe color of #E5FFFD is #CCFFFF (or #CFF).
#E5FFFD color RGB value is (229,255,253).
RGB: (229,255,253) (90%,100%,99%)
R 229 of 255 = 90%
G 255 of 255 = 100%
B 253 of 255 = 99%
R + G + B ~ 96%. #E5FFFD is light color.
R + G + B =
229 + 255 + 253 = 737 (100%)
R 229 of 737 ~ 31.07%
G 255 of 737 ~ 34.6%
B 253 of 737 ~ 34.33%
#E5FFFD color CMYK value is (10,0,1,0).
CMYK: (10,0,1,0) C10M0Y1K0 (10%,0%,1%,0%) (0.10/0.00/0.01/0.00)
E5 | FF | FD | |
---|---|---|---|
RGB | 229 | 255 | 253 |
HSL | 175° | 100.00% | 94.90% |
HSB/HSV | 175° | 10.20% | 100.00% |
CMYK | 10.20% | 0.00% | 0.78% |
0.00% |
HEX | E5 | FF | FD |
Decimal | 229 | 255 | 253 |
Binary | 11100101 | 11111111 | 11111101 |
Octal | 345 | 377 | 375 |
Examples of css and html codes for elements with #E5FFFD color. Also use rgb(229,255,253) instead hex code.
.myTextColor { color: #E5FFFD; }
<p style="color:#E5FFFD">This sample text font color is #E5FFFD.</p>
This text font color is #E5FFFD.
.myBgColor { background-color: #E5FFFD; }
<div style="background-color:#E5FFFD">Inner text</div>
This div background color is #E5FFFD.
.myBorderColor { border: 1px solid #E5FFFD; }
<div style="border:3px solid #E5FFFD">Div</div>
This div border color is #E5FFFD.
.myOpacity80 { color: #E5FFFD; opacity: 0.8; }
<p style="color:#E5FFFD;opacity:0.8;">80%</p>
Text with #E5FFFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5FFFD;}
<p style="text-shadow: 3px 3px 1px #E5FFFD">Text here.</p>
This text has shadow with #E5FFFD color.
.textShadow {text-shadow: 3px 3px 1px #E5FFFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5FFFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5FFFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5FFFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5FFFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5FFFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5FFFD; -webkit-box-shadow: 1px 1px 3px 2px #E5FFFD; box-shadow: 1px 1px 3px 2px #E5FFFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5FFFD; -webkit-box-shadow: 1px 1px 3px 2px #E5FFFD; box-shadow:1px 1px 3px 2px #E5FFFD;">
Div content here</div>
This text has color #E5FFFD on black background.
This text has color #E5FFFD on white background.
This text has black color on #E5FFFD background.
This text has white color on #E5FFFD background.