HEX: #E17A5D
RGB: (225,122,93)
#E17A5D contains mainly red color. Web safe color of #E17A5D is #CC6666 (or #C66).
#E17A5D color RGB value is (225,122,93).
RGB: (225,122,93) (88%,48%,36%)
R 225 of 255 = 88%
G 122 of 255 = 48%
B 93 of 255 = 36%
R + G + B ~ 57%. #E17A5D is middle color (not dark and not light).
R + G + B =
225 + 122 + 93 = 440 (100%)
R 225 of 440 ~ 51.14%
G 122 of 440 ~ 27.73%
B 93 of 440 ~ 21.14%
#E17A5D color CMYK value is (0,46,59,12).
CMYK: (0,46,59,12) C0M46Y59K12 (0%,46%,59%,12%) (0.00/0.46/0.59/0.12)
E1 | 7A | 5D | |
---|---|---|---|
RGB | 225 | 122 | 93 |
HSL | 13° | 68.75% | 62.35% |
HSB/HSV | 13° | 58.67% | 88.24% |
CMYK | 0.00% | 45.78% | 58.67% |
11.76% |
HEX | E1 | 7A | 5D |
Decimal | 225 | 122 | 93 |
Binary | 11100001 | 1111010 | 1011101 |
Octal | 341 | 172 | 135 |
Examples of css and html codes for elements with #E17A5D color. Also use rgb(225,122,93) instead hex code.
.myTextColor { color: #E17A5D; }
<p style="color:#E17A5D">This sample text font color is #E17A5D.</p>
This text font color is #E17A5D.
.myBgColor { background-color: #E17A5D; }
<div style="background-color:#E17A5D">Inner text</div>
This div background color is #E17A5D.
.myBorderColor { border: 1px solid #E17A5D; }
<div style="border:3px solid #E17A5D">Div</div>
This div border color is #E17A5D.
.myOpacity80 { color: #E17A5D; opacity: 0.8; }
<p style="color:#E17A5D;opacity:0.8;">80%</p>
Text with #E17A5D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E17A5D;}
<p style="text-shadow: 3px 3px 1px #E17A5D">Text here.</p>
This text has shadow with #E17A5D color.
.textShadow {text-shadow: 3px 3px 1px #E17A5D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E17A5D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E17A5D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E17A5D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E17A5D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E17A5D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E17A5D; -webkit-box-shadow: 1px 1px 3px 2px #E17A5D; box-shadow: 1px 1px 3px 2px #E17A5D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E17A5D; -webkit-box-shadow: 1px 1px 3px 2px #E17A5D; box-shadow:1px 1px 3px 2px #E17A5D;">
Div content here</div>
This text has color #E17A5D on black background.
This text has color #E17A5D on white background.
This text has black color on #E17A5D background.
This text has white color on #E17A5D background.