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