HEX: #E2B2AA
RGB: (226,178,170)
#E2B2AA contains red, green and blue colors in about the same proportion. Web safe color of #E2B2AA is #CC9999 (or #C99).
#E2B2AA color RGB value is (226,178,170).
RGB: (226,178,170) (89%,70%,67%)
R 226 of 255 = 89%
G 178 of 255 = 70%
B 170 of 255 = 67%
R + G + B ~ 75%. #E2B2AA is quite light color.
R + G + B =
226 + 178 + 170 = 574 (100%)
R 226 of 574 ~ 39.37%
G 178 of 574 ~ 31.01%
B 170 of 574 ~ 29.62%
#E2B2AA color CMYK value is (0,21,25,11).
CMYK: (0,21,25,11) C0M21Y25K11 (0%,21%,25%,11%) (0.00/0.21/0.25/0.11)
E2 | B2 | AA | |
---|---|---|---|
RGB | 226 | 178 | 170 |
HSL | 9° | 49.12% | 77.65% |
HSB/HSV | 9° | 24.78% | 88.63% |
CMYK | 0.00% | 21.24% | 24.78% |
11.37% |
HEX | E2 | B2 | AA |
Decimal | 226 | 178 | 170 |
Binary | 11100010 | 10110010 | 10101010 |
Octal | 342 | 262 | 252 |
Examples of css and html codes for elements with #E2B2AA color. Also use rgb(226,178,170) instead hex code.
.myTextColor { color: #E2B2AA; }
<p style="color:#E2B2AA">This sample text font color is #E2B2AA.</p>
This text font color is #E2B2AA.
.myBgColor { background-color: #E2B2AA; }
<div style="background-color:#E2B2AA">Inner text</div>
This div background color is #E2B2AA.
.myBorderColor { border: 1px solid #E2B2AA; }
<div style="border:3px solid #E2B2AA">Div</div>
This div border color is #E2B2AA.
.myOpacity80 { color: #E2B2AA; opacity: 0.8; }
<p style="color:#E2B2AA;opacity:0.8;">80%</p>
Text with #E2B2AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2B2AA;}
<p style="text-shadow: 3px 3px 1px #E2B2AA">Text here.</p>
This text has shadow with #E2B2AA color.
.textShadow {text-shadow: 3px 3px 1px #E2B2AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2B2AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2B2AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2B2AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2B2AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2B2AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2B2AA; -webkit-box-shadow: 1px 1px 3px 2px #E2B2AA; box-shadow: 1px 1px 3px 2px #E2B2AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2B2AA; -webkit-box-shadow: 1px 1px 3px 2px #E2B2AA; box-shadow:1px 1px 3px 2px #E2B2AA;">
Div content here</div>
This text has color #E2B2AA on black background.
This text has color #E2B2AA on white background.
This text has black color on #E2B2AA background.
This text has white color on #E2B2AA background.