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