HEX: #E4AD76
RGB: (228,173,118)
#E4AD76 contains mainly red and green colors. Web safe color of #E4AD76 is #CC9966 (or #C96).
#E4AD76 color RGB value is (228,173,118).
RGB: (228,173,118) (89%,68%,46%)
R 228 of 255 = 89%
G 173 of 255 = 68%
B 118 of 255 = 46%
R + G + B ~ 68%. #E4AD76 is quite light color.
R + G + B =
228 + 173 + 118 = 519 (100%)
R 228 of 519 ~ 43.93%
G 173 of 519 ~ 33.33%
B 118 of 519 ~ 22.74%
#E4AD76 color CMYK value is (0,24,48,11).
CMYK: (0,24,48,11) C0M24Y48K11 (0%,24%,48%,11%) (0.00/0.24/0.48/0.11)
E4 | AD | 76 | |
---|---|---|---|
RGB | 228 | 173 | 118 |
HSL | 30° | 67.07% | 67.84% |
HSB/HSV | 30° | 48.25% | 89.41% |
CMYK | 0.00% | 24.12% | 48.25% |
10.59% |
HEX | E4 | AD | 76 |
Decimal | 228 | 173 | 118 |
Binary | 11100100 | 10101101 | 1110110 |
Octal | 344 | 255 | 166 |
Examples of css and html codes for elements with #E4AD76 color. Also use rgb(228,173,118) instead hex code.
.myTextColor { color: #E4AD76; }
<p style="color:#E4AD76">This sample text font color is #E4AD76.</p>
This text font color is #E4AD76.
.myBgColor { background-color: #E4AD76; }
<div style="background-color:#E4AD76">Inner text</div>
This div background color is #E4AD76.
.myBorderColor { border: 1px solid #E4AD76; }
<div style="border:3px solid #E4AD76">Div</div>
This div border color is #E4AD76.
.myOpacity80 { color: #E4AD76; opacity: 0.8; }
<p style="color:#E4AD76;opacity:0.8;">80%</p>
Text with #E4AD76 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4AD76;}
<p style="text-shadow: 3px 3px 1px #E4AD76">Text here.</p>
This text has shadow with #E4AD76 color.
.textShadow {text-shadow: 3px 3px 1px #E4AD76, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4AD76, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4AD76 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4AD76, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4AD76, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4AD76 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4AD76; -webkit-box-shadow: 1px 1px 3px 2px #E4AD76; box-shadow: 1px 1px 3px 2px #E4AD76; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4AD76; -webkit-box-shadow: 1px 1px 3px 2px #E4AD76; box-shadow:1px 1px 3px 2px #E4AD76;">
Div content here</div>
This text has color #E4AD76 on black background.
This text has color #E4AD76 on white background.
This text has black color on #E4AD76 background.
This text has white color on #E4AD76 background.