HEX: #E4ADDB
RGB: (228,173,219)
#E4ADDB contains red, green and blue colors in about the same proportion. Web safe color of #E4ADDB is #CC99CC (or #C9C).
#E4ADDB color RGB value is (228,173,219).
RGB: (228,173,219) (89%,68%,86%)
R 228 of 255 = 89%
G 173 of 255 = 68%
B 219 of 255 = 86%
R + G + B ~ 81%. #E4ADDB is quite light color.
R + G + B =
228 + 173 + 219 = 620 (100%)
R 228 of 620 ~ 36.77%
G 173 of 620 ~ 27.9%
B 219 of 620 ~ 35.32%
#E4ADDB color CMYK value is (0,24,4,11).
CMYK: (0,24,4,11) C0M24Y4K11 (0%,24%,4%,11%) (0.00/0.24/0.04/0.11)
E4 | AD | DB | |
---|---|---|---|
RGB | 228 | 173 | 219 |
HSL | 310° | 50.46% | 78.63% |
HSB/HSV | 310° | 24.12% | 89.41% |
CMYK | 0.00% | 24.12% | 3.95% |
10.59% |
HEX | E4 | AD | DB |
Decimal | 228 | 173 | 219 |
Binary | 11100100 | 10101101 | 11011011 |
Octal | 344 | 255 | 333 |
Examples of css and html codes for elements with #E4ADDB color. Also use rgb(228,173,219) instead hex code.
.myTextColor { color: #E4ADDB; }
<p style="color:#E4ADDB">This sample text font color is #E4ADDB.</p>
This text font color is #E4ADDB.
.myBgColor { background-color: #E4ADDB; }
<div style="background-color:#E4ADDB">Inner text</div>
This div background color is #E4ADDB.
.myBorderColor { border: 1px solid #E4ADDB; }
<div style="border:3px solid #E4ADDB">Div</div>
This div border color is #E4ADDB.
.myOpacity80 { color: #E4ADDB; opacity: 0.8; }
<p style="color:#E4ADDB;opacity:0.8;">80%</p>
Text with #E4ADDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4ADDB;}
<p style="text-shadow: 3px 3px 1px #E4ADDB">Text here.</p>
This text has shadow with #E4ADDB color.
.textShadow {text-shadow: 3px 3px 1px #E4ADDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4ADDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4ADDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4ADDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4ADDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4ADDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4ADDB; -webkit-box-shadow: 1px 1px 3px 2px #E4ADDB; box-shadow: 1px 1px 3px 2px #E4ADDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4ADDB; -webkit-box-shadow: 1px 1px 3px 2px #E4ADDB; box-shadow:1px 1px 3px 2px #E4ADDB;">
Div content here</div>
This text has color #E4ADDB on black background.
This text has color #E4ADDB on white background.
This text has black color on #E4ADDB background.
This text has white color on #E4ADDB background.