HEX: #EED5FF
RGB: (238,213,255)
#EED5FF contains red, green and blue colors in about the same proportion. Web safe color of #EED5FF is #FFCCFF (or #FCF).
#EED5FF color RGB value is (238,213,255).
RGB: (238,213,255) (93%,84%,100%)
R 238 of 255 = 93%
G 213 of 255 = 84%
B 255 of 255 = 100%
R + G + B ~ 92%. #EED5FF is light color.
R + G + B =
238 + 213 + 255 = 706 (100%)
R 238 of 706 ~ 33.71%
G 213 of 706 ~ 30.17%
B 255 of 706 ~ 36.12%
#EED5FF color CMYK value is (7,16,0,0).
CMYK: (7,16,0,0) C7M16Y0K0 (7%,16%,0%,0%) (0.07/0.16/0.00/0.00)
EE | D5 | FF | |
---|---|---|---|
RGB | 238 | 213 | 255 |
HSL | 276° | 100.00% | 91.76% |
HSB/HSV | 276° | 16.47% | 100.00% |
CMYK | 6.67% | 16.47% | 0.00% |
0.00% |
HEX | EE | D5 | FF |
Decimal | 238 | 213 | 255 |
Binary | 11101110 | 11010101 | 11111111 |
Octal | 356 | 325 | 377 |
Examples of css and html codes for elements with #EED5FF color. Also use rgb(238,213,255) instead hex code.
.myTextColor { color: #EED5FF; }
<p style="color:#EED5FF">This sample text font color is #EED5FF.</p>
This text font color is #EED5FF.
.myBgColor { background-color: #EED5FF; }
<div style="background-color:#EED5FF">Inner text</div>
This div background color is #EED5FF.
.myBorderColor { border: 1px solid #EED5FF; }
<div style="border:3px solid #EED5FF">Div</div>
This div border color is #EED5FF.
.myOpacity80 { color: #EED5FF; opacity: 0.8; }
<p style="color:#EED5FF;opacity:0.8;">80%</p>
Text with #EED5FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED5FF;}
<p style="text-shadow: 3px 3px 1px #EED5FF">Text here.</p>
This text has shadow with #EED5FF color.
.textShadow {text-shadow: 3px 3px 1px #EED5FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED5FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED5FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED5FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED5FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED5FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED5FF; -webkit-box-shadow: 1px 1px 3px 2px #EED5FF; box-shadow: 1px 1px 3px 2px #EED5FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED5FF; -webkit-box-shadow: 1px 1px 3px 2px #EED5FF; box-shadow:1px 1px 3px 2px #EED5FF;">
Div content here</div>
This text has color #EED5FF on black background.
This text has color #EED5FF on white background.
This text has black color on #EED5FF background.
This text has white color on #EED5FF background.