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