HEX: #E17E4A
RGB: (225,126,74)
#E17E4A contains mainly red color. Web safe color of #E17E4A is #CC6633 (or #C63).
#E17E4A color RGB value is (225,126,74).
RGB: (225,126,74) (88%,49%,29%)
R 225 of 255 = 88%
G 126 of 255 = 49%
B 74 of 255 = 29%
R + G + B ~ 55%. #E17E4A is middle color (not dark and not light).
R + G + B =
225 + 126 + 74 = 425 (100%)
R 225 of 425 ~ 52.94%
G 126 of 425 ~ 29.65%
B 74 of 425 ~ 17.41%
#E17E4A color CMYK value is (0,44,67,12).
CMYK: (0,44,67,12) C0M44Y67K12 (0%,44%,67%,12%) (0.00/0.44/0.67/0.12)
E1 | 7E | 4A | |
---|---|---|---|
RGB | 225 | 126 | 74 |
HSL | 21° | 71.56% | 58.63% |
HSB/HSV | 21° | 67.11% | 88.24% |
CMYK | 0.00% | 44.00% | 67.11% |
11.76% |
HEX | E1 | 7E | 4A |
Decimal | 225 | 126 | 74 |
Binary | 11100001 | 1111110 | 1001010 |
Octal | 341 | 176 | 112 |
Examples of css and html codes for elements with #E17E4A color. Also use rgb(225,126,74) instead hex code.
.myTextColor { color: #E17E4A; }
<p style="color:#E17E4A">This sample text font color is #E17E4A.</p>
This text font color is #E17E4A.
.myBgColor { background-color: #E17E4A; }
<div style="background-color:#E17E4A">Inner text</div>
This div background color is #E17E4A.
.myBorderColor { border: 1px solid #E17E4A; }
<div style="border:3px solid #E17E4A">Div</div>
This div border color is #E17E4A.
.myOpacity80 { color: #E17E4A; opacity: 0.8; }
<p style="color:#E17E4A;opacity:0.8;">80%</p>
Text with #E17E4A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E17E4A;}
<p style="text-shadow: 3px 3px 1px #E17E4A">Text here.</p>
This text has shadow with #E17E4A color.
.textShadow {text-shadow: 3px 3px 1px #E17E4A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E17E4A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E17E4A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E17E4A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E17E4A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E17E4A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E17E4A; -webkit-box-shadow: 1px 1px 3px 2px #E17E4A; box-shadow: 1px 1px 3px 2px #E17E4A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E17E4A; -webkit-box-shadow: 1px 1px 3px 2px #E17E4A; box-shadow:1px 1px 3px 2px #E17E4A;">
Div content here</div>
This text has color #E17E4A on black background.
This text has color #E17E4A on white background.
This text has black color on #E17E4A background.
This text has white color on #E17E4A background.