HEX: #E09EDD
RGB: (224,158,221)
#E09EDD contains mainly red and blue colors. Web safe color of #E09EDD is #CC99CC (or #C9C).
#E09EDD color RGB value is (224,158,221).
RGB: (224,158,221) (88%,62%,87%)
R 224 of 255 = 88%
G 158 of 255 = 62%
B 221 of 255 = 87%
R + G + B ~ 79%. #E09EDD is quite light color.
R + G + B =
224 + 158 + 221 = 603 (100%)
R 224 of 603 ~ 37.15%
G 158 of 603 ~ 26.2%
B 221 of 603 ~ 36.65%
#E09EDD color CMYK value is (0,29,1,12).
CMYK: (0,29,1,12) C0M29Y1K12 (0%,29%,1%,12%) (0.00/0.29/0.01/0.12)
E0 | 9E | DD | |
---|---|---|---|
RGB | 224 | 158 | 221 |
HSL | 303° | 51.56% | 74.90% |
HSB/HSV | 303° | 29.46% | 87.84% |
CMYK | 0.00% | 29.46% | 1.34% |
12.16% |
HEX | E0 | 9E | DD |
Decimal | 224 | 158 | 221 |
Binary | 11100000 | 10011110 | 11011101 |
Octal | 340 | 236 | 335 |
Examples of css and html codes for elements with #E09EDD color. Also use rgb(224,158,221) instead hex code.
.myTextColor { color: #E09EDD; }
<p style="color:#E09EDD">This sample text font color is #E09EDD.</p>
This text font color is #E09EDD.
.myBgColor { background-color: #E09EDD; }
<div style="background-color:#E09EDD">Inner text</div>
This div background color is #E09EDD.
.myBorderColor { border: 1px solid #E09EDD; }
<div style="border:3px solid #E09EDD">Div</div>
This div border color is #E09EDD.
.myOpacity80 { color: #E09EDD; opacity: 0.8; }
<p style="color:#E09EDD;opacity:0.8;">80%</p>
Text with #E09EDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E09EDD;}
<p style="text-shadow: 3px 3px 1px #E09EDD">Text here.</p>
This text has shadow with #E09EDD color.
.textShadow {text-shadow: 3px 3px 1px #E09EDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E09EDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E09EDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E09EDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E09EDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E09EDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E09EDD; -webkit-box-shadow: 1px 1px 3px 2px #E09EDD; box-shadow: 1px 1px 3px 2px #E09EDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E09EDD; -webkit-box-shadow: 1px 1px 3px 2px #E09EDD; box-shadow:1px 1px 3px 2px #E09EDD;">
Div content here</div>
This text has color #E09EDD on black background.
This text has color #E09EDD on white background.
This text has black color on #E09EDD background.
This text has white color on #E09EDD background.