HEX: #EEFAD8
RGB: (238,250,216)
#EEFAD8 contains red, green and blue colors in about the same proportion. Web safe color of #EEFAD8 is #FFFFCC (or #FFC).
#EEFAD8 color RGB value is (238,250,216).
RGB: (238,250,216) (93%,98%,85%)
R 238 of 255 = 93%
G 250 of 255 = 98%
B 216 of 255 = 85%
R + G + B ~ 92%. #EEFAD8 is light color.
R + G + B =
238 + 250 + 216 = 704 (100%)
R 238 of 704 ~ 33.81%
G 250 of 704 ~ 35.51%
B 216 of 704 ~ 30.68%
#EEFAD8 color CMYK value is (5,0,14,2).
CMYK: (5,0,14,2) C5M0Y14K2 (5%,0%,14%,2%) (0.05/0.00/0.14/0.02)
EE | FA | D8 | |
---|---|---|---|
RGB | 238 | 250 | 216 |
HSL | 81° | 77.27% | 91.37% |
HSB/HSV | 81° | 13.60% | 98.04% |
CMYK | 4.80% | 0.00% | 13.60% |
1.96% |
HEX | EE | FA | D8 |
Decimal | 238 | 250 | 216 |
Binary | 11101110 | 11111010 | 11011000 |
Octal | 356 | 372 | 330 |
Examples of css and html codes for elements with #EEFAD8 color. Also use rgb(238,250,216) instead hex code.
.myTextColor { color: #EEFAD8; }
<p style="color:#EEFAD8">This sample text font color is #EEFAD8.</p>
This text font color is #EEFAD8.
.myBgColor { background-color: #EEFAD8; }
<div style="background-color:#EEFAD8">Inner text</div>
This div background color is #EEFAD8.
.myBorderColor { border: 1px solid #EEFAD8; }
<div style="border:3px solid #EEFAD8">Div</div>
This div border color is #EEFAD8.
.myOpacity80 { color: #EEFAD8; opacity: 0.8; }
<p style="color:#EEFAD8;opacity:0.8;">80%</p>
Text with #EEFAD8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEFAD8;}
<p style="text-shadow: 3px 3px 1px #EEFAD8">Text here.</p>
This text has shadow with #EEFAD8 color.
.textShadow {text-shadow: 3px 3px 1px #EEFAD8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEFAD8, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEFAD8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEFAD8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEFAD8, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEFAD8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEFAD8; -webkit-box-shadow: 1px 1px 3px 2px #EEFAD8; box-shadow: 1px 1px 3px 2px #EEFAD8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEFAD8; -webkit-box-shadow: 1px 1px 3px 2px #EEFAD8; box-shadow:1px 1px 3px 2px #EEFAD8;">
Div content here</div>
This text has color #EEFAD8 on black background.
This text has color #EEFAD8 on white background.
This text has black color on #EEFAD8 background.
This text has white color on #EEFAD8 background.