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