HEX: #E3ACDD
RGB: (227,172,221)
#E3ACDD contains red, green and blue colors in about the same proportion. Web safe color of #E3ACDD is #CC99CC (or #C9C).
#E3ACDD color RGB value is (227,172,221).
RGB: (227,172,221) (89%,67%,87%)
R 227 of 255 = 89%
G 172 of 255 = 67%
B 221 of 255 = 87%
R + G + B ~ 81%. #E3ACDD is quite light color.
R + G + B =
227 + 172 + 221 = 620 (100%)
R 227 of 620 ~ 36.61%
G 172 of 620 ~ 27.74%
B 221 of 620 ~ 35.65%
#E3ACDD color CMYK value is (0,24,3,11).
CMYK: (0,24,3,11) C0M24Y3K11 (0%,24%,3%,11%) (0.00/0.24/0.03/0.11)
E3 | AC | DD | |
---|---|---|---|
RGB | 227 | 172 | 221 |
HSL | 307° | 49.55% | 78.24% |
HSB/HSV | 307° | 24.23% | 89.02% |
CMYK | 0.00% | 24.23% | 2.64% |
10.98% |
HEX | E3 | AC | DD |
Decimal | 227 | 172 | 221 |
Binary | 11100011 | 10101100 | 11011101 |
Octal | 343 | 254 | 335 |
Examples of css and html codes for elements with #E3ACDD color. Also use rgb(227,172,221) instead hex code.
.myTextColor { color: #E3ACDD; }
<p style="color:#E3ACDD">This sample text font color is #E3ACDD.</p>
This text font color is #E3ACDD.
.myBgColor { background-color: #E3ACDD; }
<div style="background-color:#E3ACDD">Inner text</div>
This div background color is #E3ACDD.
.myBorderColor { border: 1px solid #E3ACDD; }
<div style="border:3px solid #E3ACDD">Div</div>
This div border color is #E3ACDD.
.myOpacity80 { color: #E3ACDD; opacity: 0.8; }
<p style="color:#E3ACDD;opacity:0.8;">80%</p>
Text with #E3ACDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3ACDD;}
<p style="text-shadow: 3px 3px 1px #E3ACDD">Text here.</p>
This text has shadow with #E3ACDD color.
.textShadow {text-shadow: 3px 3px 1px #E3ACDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3ACDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3ACDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3ACDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3ACDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3ACDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3ACDD; -webkit-box-shadow: 1px 1px 3px 2px #E3ACDD; box-shadow: 1px 1px 3px 2px #E3ACDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3ACDD; -webkit-box-shadow: 1px 1px 3px 2px #E3ACDD; box-shadow:1px 1px 3px 2px #E3ACDD;">
Div content here</div>
This text has color #E3ACDD on black background.
This text has color #E3ACDD on white background.
This text has black color on #E3ACDD background.
This text has white color on #E3ACDD background.