HEX: #EBE2DC
RGB: (235,226,220)
#EBE2DC contains red, green and blue colors in about the same proportion. Web safe color of #EBE2DC is #FFCCCC (or #FCC).
#EBE2DC color RGB value is (235,226,220).
RGB: (235,226,220) (92%,89%,86%)
R 235 of 255 = 92%
G 226 of 255 = 89%
B 220 of 255 = 86%
R + G + B ~ 89%. #EBE2DC is light color.
R + G + B =
235 + 226 + 220 = 681 (100%)
R 235 of 681 ~ 34.51%
G 226 of 681 ~ 33.19%
B 220 of 681 ~ 32.31%
#EBE2DC color CMYK value is (0,4,6,8).
CMYK: (0,4,6,8) C0M4Y6K8 (0%,4%,6%,8%) (0.00/0.04/0.06/0.08)
EB | E2 | DC | |
---|---|---|---|
RGB | 235 | 226 | 220 |
HSL | 24° | 27.27% | 89.22% |
HSB/HSV | 24° | 6.38% | 92.16% |
CMYK | 0.00% | 3.83% | 6.38% |
7.84% |
HEX | EB | E2 | DC |
Decimal | 235 | 226 | 220 |
Binary | 11101011 | 11100010 | 11011100 |
Octal | 353 | 342 | 334 |
Examples of css and html codes for elements with #EBE2DC color. Also use rgb(235,226,220) instead hex code.
.myTextColor { color: #EBE2DC; }
<p style="color:#EBE2DC">This sample text font color is #EBE2DC.</p>
This text font color is #EBE2DC.
.myBgColor { background-color: #EBE2DC; }
<div style="background-color:#EBE2DC">Inner text</div>
This div background color is #EBE2DC.
.myBorderColor { border: 1px solid #EBE2DC; }
<div style="border:3px solid #EBE2DC">Div</div>
This div border color is #EBE2DC.
.myOpacity80 { color: #EBE2DC; opacity: 0.8; }
<p style="color:#EBE2DC;opacity:0.8;">80%</p>
Text with #EBE2DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBE2DC;}
<p style="text-shadow: 3px 3px 1px #EBE2DC">Text here.</p>
This text has shadow with #EBE2DC color.
.textShadow {text-shadow: 3px 3px 1px #EBE2DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBE2DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBE2DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBE2DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBE2DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBE2DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBE2DC; -webkit-box-shadow: 1px 1px 3px 2px #EBE2DC; box-shadow: 1px 1px 3px 2px #EBE2DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBE2DC; -webkit-box-shadow: 1px 1px 3px 2px #EBE2DC; box-shadow:1px 1px 3px 2px #EBE2DC;">
Div content here</div>
This text has color #EBE2DC on black background.
This text has color #EBE2DC on white background.
This text has black color on #EBE2DC background.
This text has white color on #EBE2DC background.