HEX: #EBF4DE
RGB: (235,244,222)
#EBF4DE contains red, green and blue colors in about the same proportion. Web safe color of #EBF4DE is #FFFFCC (or #FFC).
#EBF4DE color RGB value is (235,244,222).
RGB: (235,244,222) (92%,96%,87%)
R 235 of 255 = 92%
G 244 of 255 = 96%
B 222 of 255 = 87%
R + G + B ~ 92%. #EBF4DE is light color.
R + G + B =
235 + 244 + 222 = 701 (100%)
R 235 of 701 ~ 33.52%
G 244 of 701 ~ 34.81%
B 222 of 701 ~ 31.67%
#EBF4DE color CMYK value is (4,0,9,4).
CMYK: (4,0,9,4) C4M0Y9K4 (4%,0%,9%,4%) (0.04/0.00/0.09/0.04)
EB | F4 | DE | |
---|---|---|---|
RGB | 235 | 244 | 222 |
HSL | 85° | 50.00% | 91.37% |
HSB/HSV | 85° | 9.02% | 95.69% |
CMYK | 3.69% | 0.00% | 9.02% |
4.31% |
HEX | EB | F4 | DE |
Decimal | 235 | 244 | 222 |
Binary | 11101011 | 11110100 | 11011110 |
Octal | 353 | 364 | 336 |
Examples of css and html codes for elements with #EBF4DE color. Also use rgb(235,244,222) instead hex code.
.myTextColor { color: #EBF4DE; }
<p style="color:#EBF4DE">This sample text font color is #EBF4DE.</p>
This text font color is #EBF4DE.
.myBgColor { background-color: #EBF4DE; }
<div style="background-color:#EBF4DE">Inner text</div>
This div background color is #EBF4DE.
.myBorderColor { border: 1px solid #EBF4DE; }
<div style="border:3px solid #EBF4DE">Div</div>
This div border color is #EBF4DE.
.myOpacity80 { color: #EBF4DE; opacity: 0.8; }
<p style="color:#EBF4DE;opacity:0.8;">80%</p>
Text with #EBF4DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBF4DE;}
<p style="text-shadow: 3px 3px 1px #EBF4DE">Text here.</p>
This text has shadow with #EBF4DE color.
.textShadow {text-shadow: 3px 3px 1px #EBF4DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBF4DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBF4DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBF4DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBF4DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBF4DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBF4DE; -webkit-box-shadow: 1px 1px 3px 2px #EBF4DE; box-shadow: 1px 1px 3px 2px #EBF4DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBF4DE; -webkit-box-shadow: 1px 1px 3px 2px #EBF4DE; box-shadow:1px 1px 3px 2px #EBF4DE;">
Div content here</div>
This text has color #EBF4DE on black background.
This text has color #EBF4DE on white background.
This text has black color on #EBF4DE background.
This text has white color on #EBF4DE background.