HEX: #EED5EB
RGB: (238,213,235)
#EED5EB contains red, green and blue colors in about the same proportion. Web safe color of #EED5EB is #FFCCFF (or #FCF).
#EED5EB color RGB value is (238,213,235).
RGB: (238,213,235) (93%,84%,92%)
R 238 of 255 = 93%
G 213 of 255 = 84%
B 235 of 255 = 92%
R + G + B ~ 90%. #EED5EB is light color.
R + G + B =
238 + 213 + 235 = 686 (100%)
R 238 of 686 ~ 34.69%
G 213 of 686 ~ 31.05%
B 235 of 686 ~ 34.26%
#EED5EB color CMYK value is (0,11,1,7).
CMYK: (0,11,1,7) C0M11Y1K7 (0%,11%,1%,7%) (0.00/0.11/0.01/0.07)
EE | D5 | EB | |
---|---|---|---|
RGB | 238 | 213 | 235 |
HSL | 307° | 42.37% | 88.43% |
HSB/HSV | 307° | 10.50% | 93.33% |
CMYK | 0.00% | 10.50% | 1.26% |
6.67% |
HEX | EE | D5 | EB |
Decimal | 238 | 213 | 235 |
Binary | 11101110 | 11010101 | 11101011 |
Octal | 356 | 325 | 353 |
Examples of css and html codes for elements with #EED5EB color. Also use rgb(238,213,235) instead hex code.
.myTextColor { color: #EED5EB; }
<p style="color:#EED5EB">This sample text font color is #EED5EB.</p>
This text font color is #EED5EB.
.myBgColor { background-color: #EED5EB; }
<div style="background-color:#EED5EB">Inner text</div>
This div background color is #EED5EB.
.myBorderColor { border: 1px solid #EED5EB; }
<div style="border:3px solid #EED5EB">Div</div>
This div border color is #EED5EB.
.myOpacity80 { color: #EED5EB; opacity: 0.8; }
<p style="color:#EED5EB;opacity:0.8;">80%</p>
Text with #EED5EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED5EB;}
<p style="text-shadow: 3px 3px 1px #EED5EB">Text here.</p>
This text has shadow with #EED5EB color.
.textShadow {text-shadow: 3px 3px 1px #EED5EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED5EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED5EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED5EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED5EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED5EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED5EB; -webkit-box-shadow: 1px 1px 3px 2px #EED5EB; box-shadow: 1px 1px 3px 2px #EED5EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED5EB; -webkit-box-shadow: 1px 1px 3px 2px #EED5EB; box-shadow:1px 1px 3px 2px #EED5EB;">
Div content here</div>
This text has color #EED5EB on black background.
This text has color #EED5EB on white background.
This text has black color on #EED5EB background.
This text has white color on #EED5EB background.