HEX: #E5C474
RGB: (229,196,116)
#E5C474 contains mainly red and green colors. Web safe color of #E5C474 is #CCCC66 (or #CC6).
#E5C474 color RGB value is (229,196,116).
RGB: (229,196,116) (90%,77%,45%)
R 229 of 255 = 90%
G 196 of 255 = 77%
B 116 of 255 = 45%
R + G + B ~ 71%. #E5C474 is quite light color.
R + G + B =
229 + 196 + 116 = 541 (100%)
R 229 of 541 ~ 42.33%
G 196 of 541 ~ 36.23%
B 116 of 541 ~ 21.44%
#E5C474 color CMYK value is (0,14,49,10).
CMYK: (0,14,49,10) C0M14Y49K10 (0%,14%,49%,10%) (0.00/0.14/0.49/0.10)
E5 | C4 | 74 | |
---|---|---|---|
RGB | 229 | 196 | 116 |
HSL | 42° | 68.48% | 67.65% |
HSB/HSV | 42° | 49.34% | 89.80% |
CMYK | 0.00% | 14.41% | 49.34% |
10.20% |
HEX | E5 | C4 | 74 |
Decimal | 229 | 196 | 116 |
Binary | 11100101 | 11000100 | 1110100 |
Octal | 345 | 304 | 164 |
Examples of css and html codes for elements with #E5C474 color. Also use rgb(229,196,116) instead hex code.
.myTextColor { color: #E5C474; }
<p style="color:#E5C474">This sample text font color is #E5C474.</p>
This text font color is #E5C474.
.myBgColor { background-color: #E5C474; }
<div style="background-color:#E5C474">Inner text</div>
This div background color is #E5C474.
.myBorderColor { border: 1px solid #E5C474; }
<div style="border:3px solid #E5C474">Div</div>
This div border color is #E5C474.
.myOpacity80 { color: #E5C474; opacity: 0.8; }
<p style="color:#E5C474;opacity:0.8;">80%</p>
Text with #E5C474 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5C474;}
<p style="text-shadow: 3px 3px 1px #E5C474">Text here.</p>
This text has shadow with #E5C474 color.
.textShadow {text-shadow: 3px 3px 1px #E5C474, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5C474, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5C474 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5C474, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5C474, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5C474 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5C474; -webkit-box-shadow: 1px 1px 3px 2px #E5C474; box-shadow: 1px 1px 3px 2px #E5C474; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5C474; -webkit-box-shadow: 1px 1px 3px 2px #E5C474; box-shadow:1px 1px 3px 2px #E5C474;">
Div content here</div>
This text has color #E5C474 on black background.
This text has color #E5C474 on white background.
This text has black color on #E5C474 background.
This text has white color on #E5C474 background.