HEX: #EBFFDD
RGB: (235,255,221)
#EBFFDD contains red, green and blue colors in about the same proportion. Web safe color of #EBFFDD is #FFFFCC (or #FFC).
#EBFFDD color RGB value is (235,255,221).
RGB: (235,255,221) (92%,100%,87%)
R 235 of 255 = 92%
G 255 of 255 = 100%
B 221 of 255 = 87%
R + G + B ~ 93%. #EBFFDD is light color.
R + G + B =
235 + 255 + 221 = 711 (100%)
R 235 of 711 ~ 33.05%
G 255 of 711 ~ 35.86%
B 221 of 711 ~ 31.08%
#EBFFDD color CMYK value is (8,0,13,0).
CMYK: (8,0,13,0) C8M0Y13K0 (8%,0%,13%,0%) (0.08/0.00/0.13/0.00)
EB | FF | DD | |
---|---|---|---|
RGB | 235 | 255 | 221 |
HSL | 95° | 100.00% | 93.33% |
HSB/HSV | 95° | 13.33% | 100.00% |
CMYK | 7.84% | 0.00% | 13.33% |
0.00% |
HEX | EB | FF | DD |
Decimal | 235 | 255 | 221 |
Binary | 11101011 | 11111111 | 11011101 |
Octal | 353 | 377 | 335 |
Examples of css and html codes for elements with #EBFFDD color. Also use rgb(235,255,221) instead hex code.
.myTextColor { color: #EBFFDD; }
<p style="color:#EBFFDD">This sample text font color is #EBFFDD.</p>
This text font color is #EBFFDD.
.myBgColor { background-color: #EBFFDD; }
<div style="background-color:#EBFFDD">Inner text</div>
This div background color is #EBFFDD.
.myBorderColor { border: 1px solid #EBFFDD; }
<div style="border:3px solid #EBFFDD">Div</div>
This div border color is #EBFFDD.
.myOpacity80 { color: #EBFFDD; opacity: 0.8; }
<p style="color:#EBFFDD;opacity:0.8;">80%</p>
Text with #EBFFDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBFFDD;}
<p style="text-shadow: 3px 3px 1px #EBFFDD">Text here.</p>
This text has shadow with #EBFFDD color.
.textShadow {text-shadow: 3px 3px 1px #EBFFDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBFFDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBFFDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBFFDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBFFDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBFFDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBFFDD; -webkit-box-shadow: 1px 1px 3px 2px #EBFFDD; box-shadow: 1px 1px 3px 2px #EBFFDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBFFDD; -webkit-box-shadow: 1px 1px 3px 2px #EBFFDD; box-shadow:1px 1px 3px 2px #EBFFDD;">
Div content here</div>
This text has color #EBFFDD on black background.
This text has color #EBFFDD on white background.
This text has black color on #EBFFDD background.
This text has white color on #EBFFDD background.