HEX: #E2F8DB
RGB: (226,248,219)
#E2F8DB contains red, green and blue colors in about the same proportion. Web safe color of #E2F8DB is #CCFFCC (or #CFC).
#E2F8DB color RGB value is (226,248,219).
RGB: (226,248,219) (89%,97%,86%)
R 226 of 255 = 89%
G 248 of 255 = 97%
B 219 of 255 = 86%
R + G + B ~ 91%. #E2F8DB is light color.
R + G + B =
226 + 248 + 219 = 693 (100%)
R 226 of 693 ~ 32.61%
G 248 of 693 ~ 35.79%
B 219 of 693 ~ 31.6%
#E2F8DB color CMYK value is (9,0,12,3).
CMYK: (9,0,12,3) C9M0Y12K3 (9%,0%,12%,3%) (0.09/0.00/0.12/0.03)
E2 | F8 | DB | |
---|---|---|---|
RGB | 226 | 248 | 219 |
HSL | 106° | 67.44% | 91.57% |
HSB/HSV | 106° | 11.69% | 97.25% |
CMYK | 8.87% | 0.00% | 11.69% |
2.75% |
HEX | E2 | F8 | DB |
Decimal | 226 | 248 | 219 |
Binary | 11100010 | 11111000 | 11011011 |
Octal | 342 | 370 | 333 |
Examples of css and html codes for elements with #E2F8DB color. Also use rgb(226,248,219) instead hex code.
.myTextColor { color: #E2F8DB; }
<p style="color:#E2F8DB">This sample text font color is #E2F8DB.</p>
This text font color is #E2F8DB.
.myBgColor { background-color: #E2F8DB; }
<div style="background-color:#E2F8DB">Inner text</div>
This div background color is #E2F8DB.
.myBorderColor { border: 1px solid #E2F8DB; }
<div style="border:3px solid #E2F8DB">Div</div>
This div border color is #E2F8DB.
.myOpacity80 { color: #E2F8DB; opacity: 0.8; }
<p style="color:#E2F8DB;opacity:0.8;">80%</p>
Text with #E2F8DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2F8DB;}
<p style="text-shadow: 3px 3px 1px #E2F8DB">Text here.</p>
This text has shadow with #E2F8DB color.
.textShadow {text-shadow: 3px 3px 1px #E2F8DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2F8DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2F8DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2F8DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2F8DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2F8DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2F8DB; -webkit-box-shadow: 1px 1px 3px 2px #E2F8DB; box-shadow: 1px 1px 3px 2px #E2F8DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2F8DB; -webkit-box-shadow: 1px 1px 3px 2px #E2F8DB; box-shadow:1px 1px 3px 2px #E2F8DB;">
Div content here</div>
This text has color #E2F8DB on black background.
This text has color #E2F8DB on white background.
This text has black color on #E2F8DB background.
This text has white color on #E2F8DB background.