HEX: #EB7373
RGB: (235,115,115)
#EB7373 contains mainly red color. Web safe color of #EB7373 is #FF6666 (or #F66).
#EB7373 color RGB value is (235,115,115).
RGB: (235,115,115) (92%,45%,45%)
R 235 of 255 = 92%
G 115 of 255 = 45%
B 115 of 255 = 45%
R + G + B ~ 61%. #EB7373 is quite light color.
R + G + B =
235 + 115 + 115 = 465 (100%)
R 235 of 465 ~ 50.54%
G 115 of 465 ~ 24.73%
B 115 of 465 ~ 24.73%
#EB7373 color CMYK value is (0,51,51,8).
CMYK: (0,51,51,8) C0M51Y51K8 (0%,51%,51%,8%) (0.00/0.51/0.51/0.08)
EB | 73 | 73 | |
---|---|---|---|
RGB | 235 | 115 | 115 |
HSL | 0° | 75.00% | 68.63% |
HSB/HSV | 0° | 51.06% | 92.16% |
CMYK | 0.00% | 51.06% | 51.06% |
7.84% |
HEX | EB | 73 | 73 |
Decimal | 235 | 115 | 115 |
Binary | 11101011 | 1110011 | 1110011 |
Octal | 353 | 163 | 163 |
Examples of css and html codes for elements with #EB7373 color. Also use rgb(235,115,115) instead hex code.
.myTextColor { color: #EB7373; }
<p style="color:#EB7373">This sample text font color is #EB7373.</p>
This text font color is #EB7373.
.myBgColor { background-color: #EB7373; }
<div style="background-color:#EB7373">Inner text</div>
This div background color is #EB7373.
.myBorderColor { border: 1px solid #EB7373; }
<div style="border:3px solid #EB7373">Div</div>
This div border color is #EB7373.
.myOpacity80 { color: #EB7373; opacity: 0.8; }
<p style="color:#EB7373;opacity:0.8;">80%</p>
Text with #EB7373 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EB7373;}
<p style="text-shadow: 3px 3px 1px #EB7373">Text here.</p>
This text has shadow with #EB7373 color.
.textShadow {text-shadow: 3px 3px 1px #EB7373, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EB7373, 5px 5px 20px red">Text here.</p>
This text has shadow with #EB7373 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EB7373, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EB7373, Direction=45, Strength=4)">Text</p>
This text has shadow with #EB7373 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EB7373; -webkit-box-shadow: 1px 1px 3px 2px #EB7373; box-shadow: 1px 1px 3px 2px #EB7373; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EB7373; -webkit-box-shadow: 1px 1px 3px 2px #EB7373; box-shadow:1px 1px 3px 2px #EB7373;">
Div content here</div>
This text has color #EB7373 on black background.
This text has color #EB7373 on white background.
This text has black color on #EB7373 background.
This text has white color on #EB7373 background.