HEX: #E17580
RGB: (225,117,128)
#E17580 contains mainly red color. Web safe color of #E17580 is #CC6666 (or #C66).
#E17580 color RGB value is (225,117,128).
RGB: (225,117,128) (88%,46%,50%)
R 225 of 255 = 88%
G 117 of 255 = 46%
B 128 of 255 = 50%
R + G + B ~ 61%. #E17580 is quite light color.
R + G + B =
225 + 117 + 128 = 470 (100%)
R 225 of 470 ~ 47.87%
G 117 of 470 ~ 24.89%
B 128 of 470 ~ 27.23%
#E17580 color CMYK value is (0,48,43,12).
CMYK: (0,48,43,12) C0M48Y43K12 (0%,48%,43%,12%) (0.00/0.48/0.43/0.12)
E1 | 75 | 80 | |
---|---|---|---|
RGB | 225 | 117 | 128 |
HSL | 354° | 64.29% | 67.06% |
HSB/HSV | 354° | 48.00% | 88.24% |
CMYK | 0.00% | 48.00% | 43.11% |
11.76% |
HEX | E1 | 75 | 80 |
Decimal | 225 | 117 | 128 |
Binary | 11100001 | 1110101 | 10000000 |
Octal | 341 | 165 | 200 |
Examples of css and html codes for elements with #E17580 color. Also use rgb(225,117,128) instead hex code.
.myTextColor { color: #E17580; }
<p style="color:#E17580">This sample text font color is #E17580.</p>
This text font color is #E17580.
.myBgColor { background-color: #E17580; }
<div style="background-color:#E17580">Inner text</div>
This div background color is #E17580.
.myBorderColor { border: 1px solid #E17580; }
<div style="border:3px solid #E17580">Div</div>
This div border color is #E17580.
.myOpacity80 { color: #E17580; opacity: 0.8; }
<p style="color:#E17580;opacity:0.8;">80%</p>
Text with #E17580 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E17580;}
<p style="text-shadow: 3px 3px 1px #E17580">Text here.</p>
This text has shadow with #E17580 color.
.textShadow {text-shadow: 3px 3px 1px #E17580, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E17580, 5px 5px 20px red">Text here.</p>
This text has shadow with #E17580 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E17580, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E17580, Direction=45, Strength=4)">Text</p>
This text has shadow with #E17580 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E17580; -webkit-box-shadow: 1px 1px 3px 2px #E17580; box-shadow: 1px 1px 3px 2px #E17580; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E17580; -webkit-box-shadow: 1px 1px 3px 2px #E17580; box-shadow:1px 1px 3px 2px #E17580;">
Div content here</div>
This text has color #E17580 on black background.
This text has color #E17580 on white background.
This text has black color on #E17580 background.
This text has white color on #E17580 background.