HEX: #E7909C
RGB: (231,144,156)
#E7909C contains mainly red color. Web safe color of #E7909C is #FF9999 (or #F99).
#E7909C color RGB value is (231,144,156).
RGB: (231,144,156) (91%,56%,61%)
R 231 of 255 = 91%
G 144 of 255 = 56%
B 156 of 255 = 61%
R + G + B ~ 69%. #E7909C is quite light color.
R + G + B =
231 + 144 + 156 = 531 (100%)
R 231 of 531 ~ 43.5%
G 144 of 531 ~ 27.12%
B 156 of 531 ~ 29.38%
#E7909C color CMYK value is (0,38,32,9).
CMYK: (0,38,32,9) C0M38Y32K9 (0%,38%,32%,9%) (0.00/0.38/0.32/0.09)
E7 | 90 | 9C | |
---|---|---|---|
RGB | 231 | 144 | 156 |
HSL | 352° | 64.44% | 73.53% |
HSB/HSV | 352° | 37.66% | 90.59% |
CMYK | 0.00% | 37.66% | 32.47% |
9.41% |
HEX | E7 | 90 | 9C |
Decimal | 231 | 144 | 156 |
Binary | 11100111 | 10010000 | 10011100 |
Octal | 347 | 220 | 234 |
Examples of css and html codes for elements with #E7909C color. Also use rgb(231,144,156) instead hex code.
.myTextColor { color: #E7909C; }
<p style="color:#E7909C">This sample text font color is #E7909C.</p>
This text font color is #E7909C.
.myBgColor { background-color: #E7909C; }
<div style="background-color:#E7909C">Inner text</div>
This div background color is #E7909C.
.myBorderColor { border: 1px solid #E7909C; }
<div style="border:3px solid #E7909C">Div</div>
This div border color is #E7909C.
.myOpacity80 { color: #E7909C; opacity: 0.8; }
<p style="color:#E7909C;opacity:0.8;">80%</p>
Text with #E7909C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7909C;}
<p style="text-shadow: 3px 3px 1px #E7909C">Text here.</p>
This text has shadow with #E7909C color.
.textShadow {text-shadow: 3px 3px 1px #E7909C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7909C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7909C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7909C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7909C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7909C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7909C; -webkit-box-shadow: 1px 1px 3px 2px #E7909C; box-shadow: 1px 1px 3px 2px #E7909C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7909C; -webkit-box-shadow: 1px 1px 3px 2px #E7909C; box-shadow:1px 1px 3px 2px #E7909C;">
Div content here</div>
This text has color #E7909C on black background.
This text has color #E7909C on white background.
This text has black color on #E7909C background.
This text has white color on #E7909C background.