HEX: #EEA05D
RGB: (238,160,93)
#EEA05D contains mainly red color. Web safe color of #EEA05D is #FF9966 (or #F96).
#EEA05D color RGB value is (238,160,93).
RGB: (238,160,93) (93%,63%,36%)
R 238 of 255 = 93%
G 160 of 255 = 63%
B 93 of 255 = 36%
R + G + B ~ 64%. #EEA05D is quite light color.
R + G + B =
238 + 160 + 93 = 491 (100%)
R 238 of 491 ~ 48.47%
G 160 of 491 ~ 32.59%
B 93 of 491 ~ 18.94%
#EEA05D color CMYK value is (0,33,61,7).
CMYK: (0,33,61,7) C0M33Y61K7 (0%,33%,61%,7%) (0.00/0.33/0.61/0.07)
EE | A0 | 5D | |
---|---|---|---|
RGB | 238 | 160 | 93 |
HSL | 28° | 81.01% | 64.90% |
HSB/HSV | 28° | 60.92% | 93.33% |
CMYK | 0.00% | 32.77% | 60.92% |
6.67% |
HEX | EE | A0 | 5D |
Decimal | 238 | 160 | 93 |
Binary | 11101110 | 10100000 | 1011101 |
Octal | 356 | 240 | 135 |
Examples of css and html codes for elements with #EEA05D color. Also use rgb(238,160,93) instead hex code.
.myTextColor { color: #EEA05D; }
<p style="color:#EEA05D">This sample text font color is #EEA05D.</p>
This text font color is #EEA05D.
.myBgColor { background-color: #EEA05D; }
<div style="background-color:#EEA05D">Inner text</div>
This div background color is #EEA05D.
.myBorderColor { border: 1px solid #EEA05D; }
<div style="border:3px solid #EEA05D">Div</div>
This div border color is #EEA05D.
.myOpacity80 { color: #EEA05D; opacity: 0.8; }
<p style="color:#EEA05D;opacity:0.8;">80%</p>
Text with #EEA05D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEA05D;}
<p style="text-shadow: 3px 3px 1px #EEA05D">Text here.</p>
This text has shadow with #EEA05D color.
.textShadow {text-shadow: 3px 3px 1px #EEA05D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEA05D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEA05D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEA05D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEA05D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEA05D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEA05D; -webkit-box-shadow: 1px 1px 3px 2px #EEA05D; box-shadow: 1px 1px 3px 2px #EEA05D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEA05D; -webkit-box-shadow: 1px 1px 3px 2px #EEA05D; box-shadow:1px 1px 3px 2px #EEA05D;">
Div content here</div>
This text has color #EEA05D on black background.
This text has color #EEA05D on white background.
This text has black color on #EEA05D background.
This text has white color on #EEA05D background.