HEX: #E0FFFF
RGB: (224,255,255)
Color name is LightCyan. #E0FFFF contains red, green and blue colors in about the same proportion. Web safe color of #E0FFFF is #CCFFFF (or #CFF).
#E0FFFF color RGB value is (224,255,255).
RGB: (224,255,255) (88%,100%,100%)
R 224 of 255 = 88%
G 255 of 255 = 100%
B 255 of 255 = 100%
R + G + B ~ 96%. #E0FFFF is light color.
R + G + B =
224 + 255 + 255 = 734 (100%)
R 224 of 734 ~ 30.52%
G 255 of 734 ~ 34.74%
B 255 of 734 ~ 34.74%
#E0FFFF color CMYK value is (12,0,0,0).
CMYK: (12,0,0,0) C12M0Y0K0 (12%,0%,0%,0%) (0.12/0.00/0.00/0.00)
E0 | FF | FF | |
---|---|---|---|
RGB | 224 | 255 | 255 |
HSL | 180° | 100.00% | 93.92% |
HSB/HSV | 180° | 12.16% | 100.00% |
CMYK | 12.16% | 0.00% | 0.00% |
0.00% |
HEX | E0 | FF | FF |
Decimal | 224 | 255 | 255 |
Binary | 11100000 | 11111111 | 11111111 |
Octal | 340 | 377 | 377 |
Examples of css and html codes for elements with #E0FFFF color. Also use rgb(224,255,255) instead hex code.
.myTextColor { color: #E0FFFF; }
<p style="color:#E0FFFF">This sample text font color is #E0FFFF.</p>
This text font color is #E0FFFF.
.myBgColor { background-color: #E0FFFF; }
<div style="background-color:#E0FFFF">Inner text</div>
This div background color is #E0FFFF.
.myBorderColor { border: 1px solid #E0FFFF; }
<div style="border:3px solid #E0FFFF">Div</div>
This div border color is #E0FFFF.
.myOpacity80 { color: #E0FFFF; opacity: 0.8; }
<p style="color:#E0FFFF;opacity:0.8;">80%</p>
Text with #E0FFFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0FFFF;}
<p style="text-shadow: 3px 3px 1px #E0FFFF">Text here.</p>
This text has shadow with #E0FFFF color.
.textShadow {text-shadow: 3px 3px 1px #E0FFFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0FFFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0FFFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0FFFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0FFFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0FFFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0FFFF; -webkit-box-shadow: 1px 1px 3px 2px #E0FFFF; box-shadow: 1px 1px 3px 2px #E0FFFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0FFFF; -webkit-box-shadow: 1px 1px 3px 2px #E0FFFF; box-shadow:1px 1px 3px 2px #E0FFFF;">
Div content here</div>
This text has color #E0FFFF on black background.
This text has color #E0FFFF on white background.
This text has black color on #E0FFFF background.
This text has white color on #E0FFFF background.