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