HEX: #EBD1EE
RGB: (235,209,238)
#EBD1EE contains red, green and blue colors in about the same proportion. Web safe color of #EBD1EE is #FFCCFF (or #FCF).
#EBD1EE color RGB value is (235,209,238).
RGB: (235,209,238) (92%,82%,93%)
R 235 of 255 = 92%
G 209 of 255 = 82%
B 238 of 255 = 93%
R + G + B ~ 89%. #EBD1EE is light color.
R + G + B =
235 + 209 + 238 = 682 (100%)
R 235 of 682 ~ 34.46%
G 209 of 682 ~ 30.65%
B 238 of 682 ~ 34.9%
#EBD1EE color CMYK value is (1,12,0,7).
CMYK: (1,12,0,7) C1M12Y0K7 (1%,12%,0%,7%) (0.01/0.12/0.00/0.07)
EB | D1 | EE | |
---|---|---|---|
RGB | 235 | 209 | 238 |
HSL | 294° | 46.03% | 87.65% |
HSB/HSV | 294° | 12.18% | 93.33% |
CMYK | 1.26% | 12.18% | 0.00% |
6.67% |
HEX | EB | D1 | EE |
Decimal | 235 | 209 | 238 |
Binary | 11101011 | 11010001 | 11101110 |
Octal | 353 | 321 | 356 |
Examples of css and html codes for elements with #EBD1EE color. Also use rgb(235,209,238) instead hex code.
.myTextColor { color: #EBD1EE; }
<p style="color:#EBD1EE">This sample text font color is #EBD1EE.</p>
This text font color is #EBD1EE.
.myBgColor { background-color: #EBD1EE; }
<div style="background-color:#EBD1EE">Inner text</div>
This div background color is #EBD1EE.
.myBorderColor { border: 1px solid #EBD1EE; }
<div style="border:3px solid #EBD1EE">Div</div>
This div border color is #EBD1EE.
.myOpacity80 { color: #EBD1EE; opacity: 0.8; }
<p style="color:#EBD1EE;opacity:0.8;">80%</p>
Text with #EBD1EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD1EE;}
<p style="text-shadow: 3px 3px 1px #EBD1EE">Text here.</p>
This text has shadow with #EBD1EE color.
.textShadow {text-shadow: 3px 3px 1px #EBD1EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD1EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD1EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD1EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD1EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD1EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD1EE; -webkit-box-shadow: 1px 1px 3px 2px #EBD1EE; box-shadow: 1px 1px 3px 2px #EBD1EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD1EE; -webkit-box-shadow: 1px 1px 3px 2px #EBD1EE; box-shadow:1px 1px 3px 2px #EBD1EE;">
Div content here</div>
This text has color #EBD1EE on black background.
This text has color #EBD1EE on white background.
This text has black color on #EBD1EE background.
This text has white color on #EBD1EE background.