HEX: #ED9F64
RGB: (237,159,100)
#ED9F64 contains mainly red color. Web safe color of #ED9F64 is #FF9966 (or #F96).
#ED9F64 color RGB value is (237,159,100).
RGB: (237,159,100) (93%,62%,39%)
R 237 of 255 = 93%
G 159 of 255 = 62%
B 100 of 255 = 39%
R + G + B ~ 65%. #ED9F64 is quite light color.
R + G + B =
237 + 159 + 100 = 496 (100%)
R 237 of 496 ~ 47.78%
G 159 of 496 ~ 32.06%
B 100 of 496 ~ 20.16%
#ED9F64 color CMYK value is (0,33,58,7).
CMYK: (0,33,58,7) C0M33Y58K7 (0%,33%,58%,7%) (0.00/0.33/0.58/0.07)
ED | 9F | 64 | |
---|---|---|---|
RGB | 237 | 159 | 100 |
HSL | 26° | 79.19% | 66.08% |
HSB/HSV | 26° | 57.81% | 92.94% |
CMYK | 0.00% | 32.91% | 57.81% |
7.06% |
HEX | ED | 9F | 64 |
Decimal | 237 | 159 | 100 |
Binary | 11101101 | 10011111 | 1100100 |
Octal | 355 | 237 | 144 |
Examples of css and html codes for elements with #ED9F64 color. Also use rgb(237,159,100) instead hex code.
.myTextColor { color: #ED9F64; }
<p style="color:#ED9F64">This sample text font color is #ED9F64.</p>
This text font color is #ED9F64.
.myBgColor { background-color: #ED9F64; }
<div style="background-color:#ED9F64">Inner text</div>
This div background color is #ED9F64.
.myBorderColor { border: 1px solid #ED9F64; }
<div style="border:3px solid #ED9F64">Div</div>
This div border color is #ED9F64.
.myOpacity80 { color: #ED9F64; opacity: 0.8; }
<p style="color:#ED9F64;opacity:0.8;">80%</p>
Text with #ED9F64 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED9F64;}
<p style="text-shadow: 3px 3px 1px #ED9F64">Text here.</p>
This text has shadow with #ED9F64 color.
.textShadow {text-shadow: 3px 3px 1px #ED9F64, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED9F64, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED9F64 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED9F64, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED9F64, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED9F64 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED9F64; -webkit-box-shadow: 1px 1px 3px 2px #ED9F64; box-shadow: 1px 1px 3px 2px #ED9F64; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED9F64; -webkit-box-shadow: 1px 1px 3px 2px #ED9F64; box-shadow:1px 1px 3px 2px #ED9F64;">
Div content here</div>
This text has color #ED9F64 on black background.
This text has color #ED9F64 on white background.
This text has black color on #ED9F64 background.
This text has white color on #ED9F64 background.