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