HEX: #E17F9D
RGB: (225,127,157)
#E17F9D contains mainly red color. Web safe color of #E17F9D is #CC6699 (or #C69).
#E17F9D color RGB value is (225,127,157).
RGB: (225,127,157) (88%,50%,62%)
R 225 of 255 = 88%
G 127 of 255 = 50%
B 157 of 255 = 62%
R + G + B ~ 67%. #E17F9D is quite light color.
R + G + B =
225 + 127 + 157 = 509 (100%)
R 225 of 509 ~ 44.2%
G 127 of 509 ~ 24.95%
B 157 of 509 ~ 30.84%
#E17F9D color CMYK value is (0,44,30,12).
CMYK: (0,44,30,12) C0M44Y30K12 (0%,44%,30%,12%) (0.00/0.44/0.30/0.12)
E1 | 7F | 9D | |
---|---|---|---|
RGB | 225 | 127 | 157 |
HSL | 342° | 62.03% | 69.02% |
HSB/HSV | 342° | 43.56% | 88.24% |
CMYK | 0.00% | 43.56% | 30.22% |
11.76% |
HEX | E1 | 7F | 9D |
Decimal | 225 | 127 | 157 |
Binary | 11100001 | 1111111 | 10011101 |
Octal | 341 | 177 | 235 |
Examples of css and html codes for elements with #E17F9D color. Also use rgb(225,127,157) instead hex code.
.myTextColor { color: #E17F9D; }
<p style="color:#E17F9D">This sample text font color is #E17F9D.</p>
This text font color is #E17F9D.
.myBgColor { background-color: #E17F9D; }
<div style="background-color:#E17F9D">Inner text</div>
This div background color is #E17F9D.
.myBorderColor { border: 1px solid #E17F9D; }
<div style="border:3px solid #E17F9D">Div</div>
This div border color is #E17F9D.
.myOpacity80 { color: #E17F9D; opacity: 0.8; }
<p style="color:#E17F9D;opacity:0.8;">80%</p>
Text with #E17F9D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E17F9D;}
<p style="text-shadow: 3px 3px 1px #E17F9D">Text here.</p>
This text has shadow with #E17F9D color.
.textShadow {text-shadow: 3px 3px 1px #E17F9D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E17F9D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E17F9D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E17F9D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E17F9D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E17F9D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E17F9D; -webkit-box-shadow: 1px 1px 3px 2px #E17F9D; box-shadow: 1px 1px 3px 2px #E17F9D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E17F9D; -webkit-box-shadow: 1px 1px 3px 2px #E17F9D; box-shadow:1px 1px 3px 2px #E17F9D;">
Div content here</div>
This text has color #E17F9D on black background.
This text has color #E17F9D on white background.
This text has black color on #E17F9D background.
This text has white color on #E17F9D background.