HEX: #EB727E
RGB: (235,114,126)
#EB727E contains mainly red color. Web safe color of #EB727E is #FF6666 (or #F66).
#EB727E color RGB value is (235,114,126).
RGB: (235,114,126) (92%,45%,49%)
R 235 of 255 = 92%
G 114 of 255 = 45%
B 126 of 255 = 49%
R + G + B ~ 62%. #EB727E is quite light color.
R + G + B =
235 + 114 + 126 = 475 (100%)
R 235 of 475 ~ 49.47%
G 114 of 475 ~ 24%
B 126 of 475 ~ 26.53%
#EB727E color CMYK value is (0,51,46,8).
CMYK: (0,51,46,8) C0M51Y46K8 (0%,51%,46%,8%) (0.00/0.51/0.46/0.08)
EB | 72 | 7E | |
---|---|---|---|
RGB | 235 | 114 | 126 |
HSL | 354° | 75.16% | 68.43% |
HSB/HSV | 354° | 51.49% | 92.16% |
CMYK | 0.00% | 51.49% | 46.38% |
7.84% |
HEX | EB | 72 | 7E |
Decimal | 235 | 114 | 126 |
Binary | 11101011 | 1110010 | 1111110 |
Octal | 353 | 162 | 176 |
Examples of css and html codes for elements with #EB727E color. Also use rgb(235,114,126) instead hex code.
.myTextColor { color: #EB727E; }
<p style="color:#EB727E">This sample text font color is #EB727E.</p>
This text font color is #EB727E.
.myBgColor { background-color: #EB727E; }
<div style="background-color:#EB727E">Inner text</div>
This div background color is #EB727E.
.myBorderColor { border: 1px solid #EB727E; }
<div style="border:3px solid #EB727E">Div</div>
This div border color is #EB727E.
.myOpacity80 { color: #EB727E; opacity: 0.8; }
<p style="color:#EB727E;opacity:0.8;">80%</p>
Text with #EB727E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EB727E;}
<p style="text-shadow: 3px 3px 1px #EB727E">Text here.</p>
This text has shadow with #EB727E color.
.textShadow {text-shadow: 3px 3px 1px #EB727E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EB727E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EB727E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EB727E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EB727E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EB727E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EB727E; -webkit-box-shadow: 1px 1px 3px 2px #EB727E; box-shadow: 1px 1px 3px 2px #EB727E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EB727E; -webkit-box-shadow: 1px 1px 3px 2px #EB727E; box-shadow:1px 1px 3px 2px #EB727E;">
Div content here</div>
This text has color #EB727E on black background.
This text has color #EB727E on white background.
This text has black color on #EB727E background.
This text has white color on #EB727E background.