HEX: #E47DBA
RGB: (228,125,186)
#E47DBA contains mainly red and blue colors. Web safe color of #E47DBA is #CC66CC (or #C6C).
#E47DBA color RGB value is (228,125,186).
RGB: (228,125,186) (89%,49%,73%)
R 228 of 255 = 89%
G 125 of 255 = 49%
B 186 of 255 = 73%
R + G + B ~ 70%. #E47DBA is quite light color.
R + G + B =
228 + 125 + 186 = 539 (100%)
R 228 of 539 ~ 42.3%
G 125 of 539 ~ 23.19%
B 186 of 539 ~ 34.51%
#E47DBA color CMYK value is (0,45,18,11).
CMYK: (0,45,18,11) C0M45Y18K11 (0%,45%,18%,11%) (0.00/0.45/0.18/0.11)
E4 | 7D | BA | |
---|---|---|---|
RGB | 228 | 125 | 186 |
HSL | 324° | 65.61% | 69.22% |
HSB/HSV | 324° | 45.18% | 89.41% |
CMYK | 0.00% | 45.18% | 18.42% |
10.59% |
HEX | E4 | 7D | BA |
Decimal | 228 | 125 | 186 |
Binary | 11100100 | 1111101 | 10111010 |
Octal | 344 | 175 | 272 |
Examples of css and html codes for elements with #E47DBA color. Also use rgb(228,125,186) instead hex code.
.myTextColor { color: #E47DBA; }
<p style="color:#E47DBA">This sample text font color is #E47DBA.</p>
This text font color is #E47DBA.
.myBgColor { background-color: #E47DBA; }
<div style="background-color:#E47DBA">Inner text</div>
This div background color is #E47DBA.
.myBorderColor { border: 1px solid #E47DBA; }
<div style="border:3px solid #E47DBA">Div</div>
This div border color is #E47DBA.
.myOpacity80 { color: #E47DBA; opacity: 0.8; }
<p style="color:#E47DBA;opacity:0.8;">80%</p>
Text with #E47DBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E47DBA;}
<p style="text-shadow: 3px 3px 1px #E47DBA">Text here.</p>
This text has shadow with #E47DBA color.
.textShadow {text-shadow: 3px 3px 1px #E47DBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E47DBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E47DBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E47DBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E47DBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E47DBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E47DBA; -webkit-box-shadow: 1px 1px 3px 2px #E47DBA; box-shadow: 1px 1px 3px 2px #E47DBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E47DBA; -webkit-box-shadow: 1px 1px 3px 2px #E47DBA; box-shadow:1px 1px 3px 2px #E47DBA;">
Div content here</div>
This text has color #E47DBA on black background.
This text has color #E47DBA on white background.
This text has black color on #E47DBA background.
This text has white color on #E47DBA background.