HEX: #E2D1AD
RGB: (226,209,173)
#E2D1AD contains red, green and blue colors in about the same proportion. Web safe color of #E2D1AD is #CCCC99 (or #CC9).
#E2D1AD color RGB value is (226,209,173).
RGB: (226,209,173) (89%,82%,68%)
R 226 of 255 = 89%
G 209 of 255 = 82%
B 173 of 255 = 68%
R + G + B ~ 80%. #E2D1AD is quite light color.
R + G + B =
226 + 209 + 173 = 608 (100%)
R 226 of 608 ~ 37.17%
G 209 of 608 ~ 34.38%
B 173 of 608 ~ 28.45%
#E2D1AD color CMYK value is (0,8,23,11).
CMYK: (0,8,23,11) C0M8Y23K11 (0%,8%,23%,11%) (0.00/0.08/0.23/0.11)
E2 | D1 | AD | |
---|---|---|---|
RGB | 226 | 209 | 173 |
HSL | 41° | 47.75% | 78.24% |
HSB/HSV | 41° | 23.45% | 88.63% |
CMYK | 0.00% | 7.52% | 23.45% |
11.37% |
HEX | E2 | D1 | AD |
Decimal | 226 | 209 | 173 |
Binary | 11100010 | 11010001 | 10101101 |
Octal | 342 | 321 | 255 |
Examples of css and html codes for elements with #E2D1AD color. Also use rgb(226,209,173) instead hex code.
.myTextColor { color: #E2D1AD; }
<p style="color:#E2D1AD">This sample text font color is #E2D1AD.</p>
This text font color is #E2D1AD.
.myBgColor { background-color: #E2D1AD; }
<div style="background-color:#E2D1AD">Inner text</div>
This div background color is #E2D1AD.
.myBorderColor { border: 1px solid #E2D1AD; }
<div style="border:3px solid #E2D1AD">Div</div>
This div border color is #E2D1AD.
.myOpacity80 { color: #E2D1AD; opacity: 0.8; }
<p style="color:#E2D1AD;opacity:0.8;">80%</p>
Text with #E2D1AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2D1AD;}
<p style="text-shadow: 3px 3px 1px #E2D1AD">Text here.</p>
This text has shadow with #E2D1AD color.
.textShadow {text-shadow: 3px 3px 1px #E2D1AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2D1AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2D1AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2D1AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2D1AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2D1AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2D1AD; -webkit-box-shadow: 1px 1px 3px 2px #E2D1AD; box-shadow: 1px 1px 3px 2px #E2D1AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2D1AD; -webkit-box-shadow: 1px 1px 3px 2px #E2D1AD; box-shadow:1px 1px 3px 2px #E2D1AD;">
Div content here</div>
This text has color #E2D1AD on black background.
This text has color #E2D1AD on white background.
This text has black color on #E2D1AD background.
This text has white color on #E2D1AD background.