HEX: #E5DDFF
RGB: (229,221,255)
#E5DDFF contains red, green and blue colors in about the same proportion. Web safe color of #E5DDFF is #CCCCFF (or #CCF).
#E5DDFF color RGB value is (229,221,255).
RGB: (229,221,255) (90%,87%,100%)
R 229 of 255 = 90%
G 221 of 255 = 87%
B 255 of 255 = 100%
R + G + B ~ 92%. #E5DDFF is light color.
R + G + B =
229 + 221 + 255 = 705 (100%)
R 229 of 705 ~ 32.48%
G 221 of 705 ~ 31.35%
B 255 of 705 ~ 36.17%
#E5DDFF color CMYK value is (10,13,0,0).
CMYK: (10,13,0,0) C10M13Y0K0 (10%,13%,0%,0%) (0.10/0.13/0.00/0.00)
E5 | DD | FF | |
---|---|---|---|
RGB | 229 | 221 | 255 |
HSL | 254° | 100.00% | 93.33% |
HSB/HSV | 254° | 13.33% | 100.00% |
CMYK | 10.20% | 13.33% | 0.00% |
0.00% |
HEX | E5 | DD | FF |
Decimal | 229 | 221 | 255 |
Binary | 11100101 | 11011101 | 11111111 |
Octal | 345 | 335 | 377 |
Examples of css and html codes for elements with #E5DDFF color. Also use rgb(229,221,255) instead hex code.
.myTextColor { color: #E5DDFF; }
<p style="color:#E5DDFF">This sample text font color is #E5DDFF.</p>
This text font color is #E5DDFF.
.myBgColor { background-color: #E5DDFF; }
<div style="background-color:#E5DDFF">Inner text</div>
This div background color is #E5DDFF.
.myBorderColor { border: 1px solid #E5DDFF; }
<div style="border:3px solid #E5DDFF">Div</div>
This div border color is #E5DDFF.
.myOpacity80 { color: #E5DDFF; opacity: 0.8; }
<p style="color:#E5DDFF;opacity:0.8;">80%</p>
Text with #E5DDFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5DDFF;}
<p style="text-shadow: 3px 3px 1px #E5DDFF">Text here.</p>
This text has shadow with #E5DDFF color.
.textShadow {text-shadow: 3px 3px 1px #E5DDFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5DDFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5DDFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5DDFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5DDFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5DDFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5DDFF; -webkit-box-shadow: 1px 1px 3px 2px #E5DDFF; box-shadow: 1px 1px 3px 2px #E5DDFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5DDFF; -webkit-box-shadow: 1px 1px 3px 2px #E5DDFF; box-shadow:1px 1px 3px 2px #E5DDFF;">
Div content here</div>
This text has color #E5DDFF on black background.
This text has color #E5DDFF on white background.
This text has black color on #E5DDFF background.
This text has white color on #E5DDFF background.