HEX: #E4AABE
RGB: (228,170,190)
#E4AABE contains red, green and blue colors in about the same proportion. Web safe color of #E4AABE is #CC99CC (or #C9C).
#E4AABE color RGB value is (228,170,190).
RGB: (228,170,190) (89%,67%,75%)
R 228 of 255 = 89%
G 170 of 255 = 67%
B 190 of 255 = 75%
R + G + B ~ 77%. #E4AABE is quite light color.
R + G + B =
228 + 170 + 190 = 588 (100%)
R 228 of 588 ~ 38.78%
G 170 of 588 ~ 28.91%
B 190 of 588 ~ 32.31%
#E4AABE color CMYK value is (0,25,17,11).
CMYK: (0,25,17,11) C0M25Y17K11 (0%,25%,17%,11%) (0.00/0.25/0.17/0.11)
E4 | AA | BE | |
---|---|---|---|
RGB | 228 | 170 | 190 |
HSL | 339° | 51.79% | 78.04% |
HSB/HSV | 339° | 25.44% | 89.41% |
CMYK | 0.00% | 25.44% | 16.67% |
10.59% |
HEX | E4 | AA | BE |
Decimal | 228 | 170 | 190 |
Binary | 11100100 | 10101010 | 10111110 |
Octal | 344 | 252 | 276 |
Examples of css and html codes for elements with #E4AABE color. Also use rgb(228,170,190) instead hex code.
.myTextColor { color: #E4AABE; }
<p style="color:#E4AABE">This sample text font color is #E4AABE.</p>
This text font color is #E4AABE.
.myBgColor { background-color: #E4AABE; }
<div style="background-color:#E4AABE">Inner text</div>
This div background color is #E4AABE.
.myBorderColor { border: 1px solid #E4AABE; }
<div style="border:3px solid #E4AABE">Div</div>
This div border color is #E4AABE.
.myOpacity80 { color: #E4AABE; opacity: 0.8; }
<p style="color:#E4AABE;opacity:0.8;">80%</p>
Text with #E4AABE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4AABE;}
<p style="text-shadow: 3px 3px 1px #E4AABE">Text here.</p>
This text has shadow with #E4AABE color.
.textShadow {text-shadow: 3px 3px 1px #E4AABE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4AABE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4AABE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4AABE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4AABE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4AABE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4AABE; -webkit-box-shadow: 1px 1px 3px 2px #E4AABE; box-shadow: 1px 1px 3px 2px #E4AABE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4AABE; -webkit-box-shadow: 1px 1px 3px 2px #E4AABE; box-shadow:1px 1px 3px 2px #E4AABE;">
Div content here</div>
This text has color #E4AABE on black background.
This text has color #E4AABE on white background.
This text has black color on #E4AABE background.
This text has white color on #E4AABE background.