HEX: #EEFBE7
RGB: (238,251,231)
#EEFBE7 contains red, green and blue colors in about the same proportion. Web safe color of #EEFBE7 is #FFFFFF (or #FFF).
#EEFBE7 color RGB value is (238,251,231).
RGB: (238,251,231) (93%,98%,91%)
R 238 of 255 = 93%
G 251 of 255 = 98%
B 231 of 255 = 91%
R + G + B ~ 94%. #EEFBE7 is light color.
R + G + B =
238 + 251 + 231 = 720 (100%)
R 238 of 720 ~ 33.06%
G 251 of 720 ~ 34.86%
B 231 of 720 ~ 32.08%
#EEFBE7 color CMYK value is (5,0,8,2).
CMYK: (5,0,8,2) C5M0Y8K2 (5%,0%,8%,2%) (0.05/0.00/0.08/0.02)
EE | FB | E7 | |
---|---|---|---|
RGB | 238 | 251 | 231 |
HSL | 99° | 71.43% | 94.51% |
HSB/HSV | 99° | 7.97% | 98.43% |
CMYK | 5.18% | 0.00% | 7.97% |
1.57% |
HEX | EE | FB | E7 |
Decimal | 238 | 251 | 231 |
Binary | 11101110 | 11111011 | 11100111 |
Octal | 356 | 373 | 347 |
Examples of css and html codes for elements with #EEFBE7 color. Also use rgb(238,251,231) instead hex code.
.myTextColor { color: #EEFBE7; }
<p style="color:#EEFBE7">This sample text font color is #EEFBE7.</p>
This text font color is #EEFBE7.
.myBgColor { background-color: #EEFBE7; }
<div style="background-color:#EEFBE7">Inner text</div>
This div background color is #EEFBE7.
.myBorderColor { border: 1px solid #EEFBE7; }
<div style="border:3px solid #EEFBE7">Div</div>
This div border color is #EEFBE7.
.myOpacity80 { color: #EEFBE7; opacity: 0.8; }
<p style="color:#EEFBE7;opacity:0.8;">80%</p>
Text with #EEFBE7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEFBE7;}
<p style="text-shadow: 3px 3px 1px #EEFBE7">Text here.</p>
This text has shadow with #EEFBE7 color.
.textShadow {text-shadow: 3px 3px 1px #EEFBE7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEFBE7, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEFBE7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEFBE7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEFBE7, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEFBE7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEFBE7; -webkit-box-shadow: 1px 1px 3px 2px #EEFBE7; box-shadow: 1px 1px 3px 2px #EEFBE7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEFBE7; -webkit-box-shadow: 1px 1px 3px 2px #EEFBE7; box-shadow:1px 1px 3px 2px #EEFBE7;">
Div content here</div>
This text has color #EEFBE7 on black background.
This text has color #EEFBE7 on white background.
This text has black color on #EEFBE7 background.
This text has white color on #EEFBE7 background.