HEX: #EBD6DD
RGB: (235,214,221)
#EBD6DD contains red, green and blue colors in about the same proportion. Web safe color of #EBD6DD is #FFCCCC (or #FCC).
#EBD6DD color RGB value is (235,214,221).
RGB: (235,214,221) (92%,84%,87%)
R 235 of 255 = 92%
G 214 of 255 = 84%
B 221 of 255 = 87%
R + G + B ~ 88%. #EBD6DD is light color.
R + G + B =
235 + 214 + 221 = 670 (100%)
R 235 of 670 ~ 35.07%
G 214 of 670 ~ 31.94%
B 221 of 670 ~ 32.99%
#EBD6DD color CMYK value is (0,9,6,8).
CMYK: (0,9,6,8) C0M9Y6K8 (0%,9%,6%,8%) (0.00/0.09/0.06/0.08)
EB | D6 | DD | |
---|---|---|---|
RGB | 235 | 214 | 221 |
HSL | 340° | 34.43% | 88.04% |
HSB/HSV | 340° | 8.94% | 92.16% |
CMYK | 0.00% | 8.94% | 5.96% |
7.84% |
HEX | EB | D6 | DD |
Decimal | 235 | 214 | 221 |
Binary | 11101011 | 11010110 | 11011101 |
Octal | 353 | 326 | 335 |
Examples of css and html codes for elements with #EBD6DD color. Also use rgb(235,214,221) instead hex code.
.myTextColor { color: #EBD6DD; }
<p style="color:#EBD6DD">This sample text font color is #EBD6DD.</p>
This text font color is #EBD6DD.
.myBgColor { background-color: #EBD6DD; }
<div style="background-color:#EBD6DD">Inner text</div>
This div background color is #EBD6DD.
.myBorderColor { border: 1px solid #EBD6DD; }
<div style="border:3px solid #EBD6DD">Div</div>
This div border color is #EBD6DD.
.myOpacity80 { color: #EBD6DD; opacity: 0.8; }
<p style="color:#EBD6DD;opacity:0.8;">80%</p>
Text with #EBD6DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD6DD;}
<p style="text-shadow: 3px 3px 1px #EBD6DD">Text here.</p>
This text has shadow with #EBD6DD color.
.textShadow {text-shadow: 3px 3px 1px #EBD6DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD6DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD6DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD6DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD6DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD6DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD6DD; -webkit-box-shadow: 1px 1px 3px 2px #EBD6DD; box-shadow: 1px 1px 3px 2px #EBD6DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD6DD; -webkit-box-shadow: 1px 1px 3px 2px #EBD6DD; box-shadow:1px 1px 3px 2px #EBD6DD;">
Div content here</div>
This text has color #EBD6DD on black background.
This text has color #EBD6DD on white background.
This text has black color on #EBD6DD background.
This text has white color on #EBD6DD background.