HEX: #E5A23D
RGB: (229,162,61)
#E5A23D contains mainly red color. Web safe color of #E5A23D is #CC9933 (or #C93).
#E5A23D color RGB value is (229,162,61).
RGB: (229,162,61) (90%,64%,24%)
R 229 of 255 = 90%
G 162 of 255 = 64%
B 61 of 255 = 24%
R + G + B ~ 59%. #E5A23D is middle color (not dark and not light).
R + G + B =
229 + 162 + 61 = 452 (100%)
R 229 of 452 ~ 50.66%
G 162 of 452 ~ 35.84%
B 61 of 452 ~ 13.5%
#E5A23D color CMYK value is (0,29,73,10).
CMYK: (0,29,73,10) C0M29Y73K10 (0%,29%,73%,10%) (0.00/0.29/0.73/0.10)
E5 | A2 | 3D | |
---|---|---|---|
RGB | 229 | 162 | 61 |
HSL | 36° | 76.36% | 56.86% |
HSB/HSV | 36° | 73.36% | 89.80% |
CMYK | 0.00% | 29.26% | 73.36% |
10.20% |
HEX | E5 | A2 | 3D |
Decimal | 229 | 162 | 61 |
Binary | 11100101 | 10100010 | 111101 |
Octal | 345 | 242 | 75 |
Examples of css and html codes for elements with #E5A23D color. Also use rgb(229,162,61) instead hex code.
.myTextColor { color: #E5A23D; }
<p style="color:#E5A23D">This sample text font color is #E5A23D.</p>
This text font color is #E5A23D.
.myBgColor { background-color: #E5A23D; }
<div style="background-color:#E5A23D">Inner text</div>
This div background color is #E5A23D.
.myBorderColor { border: 1px solid #E5A23D; }
<div style="border:3px solid #E5A23D">Div</div>
This div border color is #E5A23D.
.myOpacity80 { color: #E5A23D; opacity: 0.8; }
<p style="color:#E5A23D;opacity:0.8;">80%</p>
Text with #E5A23D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5A23D;}
<p style="text-shadow: 3px 3px 1px #E5A23D">Text here.</p>
This text has shadow with #E5A23D color.
.textShadow {text-shadow: 3px 3px 1px #E5A23D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5A23D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5A23D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5A23D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5A23D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5A23D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5A23D; -webkit-box-shadow: 1px 1px 3px 2px #E5A23D; box-shadow: 1px 1px 3px 2px #E5A23D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5A23D; -webkit-box-shadow: 1px 1px 3px 2px #E5A23D; box-shadow:1px 1px 3px 2px #E5A23D;">
Div content here</div>
This text has color #E5A23D on black background.
This text has color #E5A23D on white background.
This text has black color on #E5A23D background.
This text has white color on #E5A23D background.