HEX: #EBDDEA
RGB: (235,221,234)
#EBDDEA contains red, green and blue colors in about the same proportion. Web safe color of #EBDDEA is #FFCCFF (or #FCF).
#EBDDEA color RGB value is (235,221,234).
RGB: (235,221,234) (92%,87%,92%)
R 235 of 255 = 92%
G 221 of 255 = 87%
B 234 of 255 = 92%
R + G + B ~ 90%. #EBDDEA is light color.
R + G + B =
235 + 221 + 234 = 690 (100%)
R 235 of 690 ~ 34.06%
G 221 of 690 ~ 32.03%
B 234 of 690 ~ 33.91%
#EBDDEA color CMYK value is (0,6,0,8).
CMYK: (0,6,0,8) C0M6Y0K8 (0%,6%,0%,8%) (0.00/0.06/0.00/0.08)
EB | DD | EA | |
---|---|---|---|
RGB | 235 | 221 | 234 |
HSL | 304° | 25.93% | 89.41% |
HSB/HSV | 304° | 5.96% | 92.16% |
CMYK | 0.00% | 5.96% | 0.43% |
7.84% |
HEX | EB | DD | EA |
Decimal | 235 | 221 | 234 |
Binary | 11101011 | 11011101 | 11101010 |
Octal | 353 | 335 | 352 |
Examples of css and html codes for elements with #EBDDEA color. Also use rgb(235,221,234) instead hex code.
.myTextColor { color: #EBDDEA; }
<p style="color:#EBDDEA">This sample text font color is #EBDDEA.</p>
This text font color is #EBDDEA.
.myBgColor { background-color: #EBDDEA; }
<div style="background-color:#EBDDEA">Inner text</div>
This div background color is #EBDDEA.
.myBorderColor { border: 1px solid #EBDDEA; }
<div style="border:3px solid #EBDDEA">Div</div>
This div border color is #EBDDEA.
.myOpacity80 { color: #EBDDEA; opacity: 0.8; }
<p style="color:#EBDDEA;opacity:0.8;">80%</p>
Text with #EBDDEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBDDEA;}
<p style="text-shadow: 3px 3px 1px #EBDDEA">Text here.</p>
This text has shadow with #EBDDEA color.
.textShadow {text-shadow: 3px 3px 1px #EBDDEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBDDEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBDDEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBDDEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBDDEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBDDEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBDDEA; -webkit-box-shadow: 1px 1px 3px 2px #EBDDEA; box-shadow: 1px 1px 3px 2px #EBDDEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBDDEA; -webkit-box-shadow: 1px 1px 3px 2px #EBDDEA; box-shadow:1px 1px 3px 2px #EBDDEA;">
Div content here</div>
This text has color #EBDDEA on black background.
This text has color #EBDDEA on white background.
This text has black color on #EBDDEA background.
This text has white color on #EBDDEA background.