HEX: #E1A640
RGB: (225,166,64)
#E1A640 contains mainly red and green colors. Web safe color of #E1A640 is #CC9933 (or #C93).
#E1A640 color RGB value is (225,166,64).
RGB: (225,166,64) (88%,65%,25%)
R 225 of 255 = 88%
G 166 of 255 = 65%
B 64 of 255 = 25%
R + G + B ~ 59%. #E1A640 is middle color (not dark and not light).
R + G + B =
225 + 166 + 64 = 455 (100%)
R 225 of 455 ~ 49.45%
G 166 of 455 ~ 36.48%
B 64 of 455 ~ 14.07%
#E1A640 color CMYK value is (0,26,72,12).
CMYK: (0,26,72,12) C0M26Y72K12 (0%,26%,72%,12%) (0.00/0.26/0.72/0.12)
E1 | A6 | 40 | |
---|---|---|---|
RGB | 225 | 166 | 64 |
HSL | 38° | 72.85% | 56.67% |
HSB/HSV | 38° | 71.56% | 88.24% |
CMYK | 0.00% | 26.22% | 71.56% |
11.76% |
HEX | E1 | A6 | 40 |
Decimal | 225 | 166 | 64 |
Binary | 11100001 | 10100110 | 1000000 |
Octal | 341 | 246 | 100 |
Examples of css and html codes for elements with #E1A640 color. Also use rgb(225,166,64) instead hex code.
.myTextColor { color: #E1A640; }
<p style="color:#E1A640">This sample text font color is #E1A640.</p>
This text font color is #E1A640.
.myBgColor { background-color: #E1A640; }
<div style="background-color:#E1A640">Inner text</div>
This div background color is #E1A640.
.myBorderColor { border: 1px solid #E1A640; }
<div style="border:3px solid #E1A640">Div</div>
This div border color is #E1A640.
.myOpacity80 { color: #E1A640; opacity: 0.8; }
<p style="color:#E1A640;opacity:0.8;">80%</p>
Text with #E1A640 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1A640;}
<p style="text-shadow: 3px 3px 1px #E1A640">Text here.</p>
This text has shadow with #E1A640 color.
.textShadow {text-shadow: 3px 3px 1px #E1A640, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1A640, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1A640 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1A640, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1A640, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1A640 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1A640; -webkit-box-shadow: 1px 1px 3px 2px #E1A640; box-shadow: 1px 1px 3px 2px #E1A640; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1A640; -webkit-box-shadow: 1px 1px 3px 2px #E1A640; box-shadow:1px 1px 3px 2px #E1A640;">
Div content here</div>
This text has color #E1A640 on black background.
This text has color #E1A640 on white background.
This text has black color on #E1A640 background.
This text has white color on #E1A640 background.