HEX: #E9BDDD
RGB: (233,189,221)
#E9BDDD contains red, green and blue colors in about the same proportion. Web safe color of #E9BDDD is #FFCCCC (or #FCC).
#E9BDDD color RGB value is (233,189,221).
RGB: (233,189,221) (91%,74%,87%)
R 233 of 255 = 91%
G 189 of 255 = 74%
B 221 of 255 = 87%
R + G + B ~ 84%. #E9BDDD is quite light color.
R + G + B =
233 + 189 + 221 = 643 (100%)
R 233 of 643 ~ 36.24%
G 189 of 643 ~ 29.39%
B 221 of 643 ~ 34.37%
#E9BDDD color CMYK value is (0,19,5,9).
CMYK: (0,19,5,9) C0M19Y5K9 (0%,19%,5%,9%) (0.00/0.19/0.05/0.09)
E9 | BD | DD | |
---|---|---|---|
RGB | 233 | 189 | 221 |
HSL | 316° | 50.00% | 82.75% |
HSB/HSV | 316° | 18.88% | 91.37% |
CMYK | 0.00% | 18.88% | 5.15% |
8.63% |
HEX | E9 | BD | DD |
Decimal | 233 | 189 | 221 |
Binary | 11101001 | 10111101 | 11011101 |
Octal | 351 | 275 | 335 |
Examples of css and html codes for elements with #E9BDDD color. Also use rgb(233,189,221) instead hex code.
.myTextColor { color: #E9BDDD; }
<p style="color:#E9BDDD">This sample text font color is #E9BDDD.</p>
This text font color is #E9BDDD.
.myBgColor { background-color: #E9BDDD; }
<div style="background-color:#E9BDDD">Inner text</div>
This div background color is #E9BDDD.
.myBorderColor { border: 1px solid #E9BDDD; }
<div style="border:3px solid #E9BDDD">Div</div>
This div border color is #E9BDDD.
.myOpacity80 { color: #E9BDDD; opacity: 0.8; }
<p style="color:#E9BDDD;opacity:0.8;">80%</p>
Text with #E9BDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9BDDD;}
<p style="text-shadow: 3px 3px 1px #E9BDDD">Text here.</p>
This text has shadow with #E9BDDD color.
.textShadow {text-shadow: 3px 3px 1px #E9BDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9BDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9BDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9BDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9BDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9BDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9BDDD; -webkit-box-shadow: 1px 1px 3px 2px #E9BDDD; box-shadow: 1px 1px 3px 2px #E9BDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9BDDD; -webkit-box-shadow: 1px 1px 3px 2px #E9BDDD; box-shadow:1px 1px 3px 2px #E9BDDD;">
Div content here</div>
This text has color #E9BDDD on black background.
This text has color #E9BDDD on white background.
This text has black color on #E9BDDD background.
This text has white color on #E9BDDD background.