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