HEX: #E1F4EB
RGB: (225,244,235)
#E1F4EB contains red, green and blue colors in about the same proportion. Web safe color of #E1F4EB is #CCFFFF (or #CFF).
#E1F4EB color RGB value is (225,244,235).
RGB: (225,244,235) (88%,96%,92%)
R 225 of 255 = 88%
G 244 of 255 = 96%
B 235 of 255 = 92%
R + G + B ~ 92%. #E1F4EB is light color.
R + G + B =
225 + 244 + 235 = 704 (100%)
R 225 of 704 ~ 31.96%
G 244 of 704 ~ 34.66%
B 235 of 704 ~ 33.38%
#E1F4EB color CMYK value is (8,0,4,4).
CMYK: (8,0,4,4) C8M0Y4K4 (8%,0%,4%,4%) (0.08/0.00/0.04/0.04)
E1 | F4 | EB | |
---|---|---|---|
RGB | 225 | 244 | 235 |
HSL | 152° | 46.34% | 91.96% |
HSB/HSV | 152° | 7.79% | 95.69% |
CMYK | 7.79% | 0.00% | 3.69% |
4.31% |
HEX | E1 | F4 | EB |
Decimal | 225 | 244 | 235 |
Binary | 11100001 | 11110100 | 11101011 |
Octal | 341 | 364 | 353 |
Examples of css and html codes for elements with #E1F4EB color. Also use rgb(225,244,235) instead hex code.
.myTextColor { color: #E1F4EB; }
<p style="color:#E1F4EB">This sample text font color is #E1F4EB.</p>
This text font color is #E1F4EB.
.myBgColor { background-color: #E1F4EB; }
<div style="background-color:#E1F4EB">Inner text</div>
This div background color is #E1F4EB.
.myBorderColor { border: 1px solid #E1F4EB; }
<div style="border:3px solid #E1F4EB">Div</div>
This div border color is #E1F4EB.
.myOpacity80 { color: #E1F4EB; opacity: 0.8; }
<p style="color:#E1F4EB;opacity:0.8;">80%</p>
Text with #E1F4EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1F4EB;}
<p style="text-shadow: 3px 3px 1px #E1F4EB">Text here.</p>
This text has shadow with #E1F4EB color.
.textShadow {text-shadow: 3px 3px 1px #E1F4EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1F4EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1F4EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1F4EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1F4EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1F4EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1F4EB; -webkit-box-shadow: 1px 1px 3px 2px #E1F4EB; box-shadow: 1px 1px 3px 2px #E1F4EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1F4EB; -webkit-box-shadow: 1px 1px 3px 2px #E1F4EB; box-shadow:1px 1px 3px 2px #E1F4EB;">
Div content here</div>
This text has color #E1F4EB on black background.
This text has color #E1F4EB on white background.
This text has black color on #E1F4EB background.
This text has white color on #E1F4EB background.