HEX: #E9ABBD
RGB: (233,171,189)
#E9ABBD contains mainly red and blue colors. Web safe color of #E9ABBD is #FF99CC (or #F9C).
#E9ABBD color RGB value is (233,171,189).
RGB: (233,171,189) (91%,67%,74%)
R 233 of 255 = 91%
G 171 of 255 = 67%
B 189 of 255 = 74%
R + G + B ~ 77%. #E9ABBD is quite light color.
R + G + B =
233 + 171 + 189 = 593 (100%)
R 233 of 593 ~ 39.29%
G 171 of 593 ~ 28.84%
B 189 of 593 ~ 31.87%
#E9ABBD color CMYK value is (0,27,19,9).
CMYK: (0,27,19,9) C0M27Y19K9 (0%,27%,19%,9%) (0.00/0.27/0.19/0.09)
E9 | AB | BD | |
---|---|---|---|
RGB | 233 | 171 | 189 |
HSL | 343° | 58.49% | 79.22% |
HSB/HSV | 343° | 26.61% | 91.37% |
CMYK | 0.00% | 26.61% | 18.88% |
8.63% |
HEX | E9 | AB | BD |
Decimal | 233 | 171 | 189 |
Binary | 11101001 | 10101011 | 10111101 |
Octal | 351 | 253 | 275 |
Examples of css and html codes for elements with #E9ABBD color. Also use rgb(233,171,189) instead hex code.
.myTextColor { color: #E9ABBD; }
<p style="color:#E9ABBD">This sample text font color is #E9ABBD.</p>
This text font color is #E9ABBD.
.myBgColor { background-color: #E9ABBD; }
<div style="background-color:#E9ABBD">Inner text</div>
This div background color is #E9ABBD.
.myBorderColor { border: 1px solid #E9ABBD; }
<div style="border:3px solid #E9ABBD">Div</div>
This div border color is #E9ABBD.
.myOpacity80 { color: #E9ABBD; opacity: 0.8; }
<p style="color:#E9ABBD;opacity:0.8;">80%</p>
Text with #E9ABBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9ABBD;}
<p style="text-shadow: 3px 3px 1px #E9ABBD">Text here.</p>
This text has shadow with #E9ABBD color.
.textShadow {text-shadow: 3px 3px 1px #E9ABBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9ABBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9ABBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9ABBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9ABBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9ABBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9ABBD; -webkit-box-shadow: 1px 1px 3px 2px #E9ABBD; box-shadow: 1px 1px 3px 2px #E9ABBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9ABBD; -webkit-box-shadow: 1px 1px 3px 2px #E9ABBD; box-shadow:1px 1px 3px 2px #E9ABBD;">
Div content here</div>
This text has color #E9ABBD on black background.
This text has color #E9ABBD on white background.
This text has black color on #E9ABBD background.
This text has white color on #E9ABBD background.