HEX: #E0B471
RGB: (224,180,113)
#E0B471 contains mainly red and green colors. Web safe color of #E0B471 is #CCCC66 (or #CC6).
#E0B471 color RGB value is (224,180,113).
RGB: (224,180,113) (88%,71%,44%)
R 224 of 255 = 88%
G 180 of 255 = 71%
B 113 of 255 = 44%
R + G + B ~ 68%. #E0B471 is quite light color.
R + G + B =
224 + 180 + 113 = 517 (100%)
R 224 of 517 ~ 43.33%
G 180 of 517 ~ 34.82%
B 113 of 517 ~ 21.86%
#E0B471 color CMYK value is (0,20,50,12).
CMYK: (0,20,50,12) C0M20Y50K12 (0%,20%,50%,12%) (0.00/0.20/0.50/0.12)
E0 | B4 | 71 | |
---|---|---|---|
RGB | 224 | 180 | 113 |
HSL | 36° | 64.16% | 66.08% |
HSB/HSV | 36° | 49.55% | 87.84% |
CMYK | 0.00% | 19.64% | 49.55% |
12.16% |
HEX | E0 | B4 | 71 |
Decimal | 224 | 180 | 113 |
Binary | 11100000 | 10110100 | 1110001 |
Octal | 340 | 264 | 161 |
Examples of css and html codes for elements with #E0B471 color. Also use rgb(224,180,113) instead hex code.
.myTextColor { color: #E0B471; }
<p style="color:#E0B471">This sample text font color is #E0B471.</p>
This text font color is #E0B471.
.myBgColor { background-color: #E0B471; }
<div style="background-color:#E0B471">Inner text</div>
This div background color is #E0B471.
.myBorderColor { border: 1px solid #E0B471; }
<div style="border:3px solid #E0B471">Div</div>
This div border color is #E0B471.
.myOpacity80 { color: #E0B471; opacity: 0.8; }
<p style="color:#E0B471;opacity:0.8;">80%</p>
Text with #E0B471 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0B471;}
<p style="text-shadow: 3px 3px 1px #E0B471">Text here.</p>
This text has shadow with #E0B471 color.
.textShadow {text-shadow: 3px 3px 1px #E0B471, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0B471, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0B471 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0B471, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0B471, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0B471 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0B471; -webkit-box-shadow: 1px 1px 3px 2px #E0B471; box-shadow: 1px 1px 3px 2px #E0B471; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0B471; -webkit-box-shadow: 1px 1px 3px 2px #E0B471; box-shadow:1px 1px 3px 2px #E0B471;">
Div content here</div>
This text has color #E0B471 on black background.
This text has color #E0B471 on white background.
This text has black color on #E0B471 background.
This text has white color on #E0B471 background.