HEX: #E18ABB
RGB: (225,138,187)
#E18ABB contains mainly red and blue colors. Web safe color of #E18ABB is #CC99CC (or #C9C).
#E18ABB color RGB value is (225,138,187).
RGB: (225,138,187) (88%,54%,73%)
R 225 of 255 = 88%
G 138 of 255 = 54%
B 187 of 255 = 73%
R + G + B ~ 72%. #E18ABB is quite light color.
R + G + B =
225 + 138 + 187 = 550 (100%)
R 225 of 550 ~ 40.91%
G 138 of 550 ~ 25.09%
B 187 of 550 ~ 34%
#E18ABB color CMYK value is (0,39,17,12).
CMYK: (0,39,17,12) C0M39Y17K12 (0%,39%,17%,12%) (0.00/0.39/0.17/0.12)
E1 | 8A | BB | |
---|---|---|---|
RGB | 225 | 138 | 187 |
HSL | 326° | 59.18% | 71.18% |
HSB/HSV | 326° | 38.67% | 88.24% |
CMYK | 0.00% | 38.67% | 16.89% |
11.76% |
HEX | E1 | 8A | BB |
Decimal | 225 | 138 | 187 |
Binary | 11100001 | 10001010 | 10111011 |
Octal | 341 | 212 | 273 |
Examples of css and html codes for elements with #E18ABB color. Also use rgb(225,138,187) instead hex code.
.myTextColor { color: #E18ABB; }
<p style="color:#E18ABB">This sample text font color is #E18ABB.</p>
This text font color is #E18ABB.
.myBgColor { background-color: #E18ABB; }
<div style="background-color:#E18ABB">Inner text</div>
This div background color is #E18ABB.
.myBorderColor { border: 1px solid #E18ABB; }
<div style="border:3px solid #E18ABB">Div</div>
This div border color is #E18ABB.
.myOpacity80 { color: #E18ABB; opacity: 0.8; }
<p style="color:#E18ABB;opacity:0.8;">80%</p>
Text with #E18ABB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E18ABB;}
<p style="text-shadow: 3px 3px 1px #E18ABB">Text here.</p>
This text has shadow with #E18ABB color.
.textShadow {text-shadow: 3px 3px 1px #E18ABB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E18ABB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E18ABB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E18ABB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E18ABB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E18ABB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E18ABB; -webkit-box-shadow: 1px 1px 3px 2px #E18ABB; box-shadow: 1px 1px 3px 2px #E18ABB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E18ABB; -webkit-box-shadow: 1px 1px 3px 2px #E18ABB; box-shadow:1px 1px 3px 2px #E18ABB;">
Div content here</div>
This text has color #E18ABB on black background.
This text has color #E18ABB on white background.
This text has black color on #E18ABB background.
This text has white color on #E18ABB background.