HEX: #EB877D
RGB: (235,135,125)
#EB877D contains mainly red color. Web safe color of #EB877D is #FF9966 (or #F96).
#EB877D color RGB value is (235,135,125).
RGB: (235,135,125) (92%,53%,49%)
R 235 of 255 = 92%
G 135 of 255 = 53%
B 125 of 255 = 49%
R + G + B ~ 65%. #EB877D is quite light color.
R + G + B =
235 + 135 + 125 = 495 (100%)
R 235 of 495 ~ 47.47%
G 135 of 495 ~ 27.27%
B 125 of 495 ~ 25.25%
#EB877D color CMYK value is (0,43,47,8).
CMYK: (0,43,47,8) C0M43Y47K8 (0%,43%,47%,8%) (0.00/0.43/0.47/0.08)
EB | 87 | 7D | |
---|---|---|---|
RGB | 235 | 135 | 125 |
HSL | 5° | 73.33% | 70.59% |
HSB/HSV | 5° | 46.81% | 92.16% |
CMYK | 0.00% | 42.55% | 46.81% |
7.84% |
HEX | EB | 87 | 7D |
Decimal | 235 | 135 | 125 |
Binary | 11101011 | 10000111 | 1111101 |
Octal | 353 | 207 | 175 |
Examples of css and html codes for elements with #EB877D color. Also use rgb(235,135,125) instead hex code.
.myTextColor { color: #EB877D; }
<p style="color:#EB877D">This sample text font color is #EB877D.</p>
This text font color is #EB877D.
.myBgColor { background-color: #EB877D; }
<div style="background-color:#EB877D">Inner text</div>
This div background color is #EB877D.
.myBorderColor { border: 1px solid #EB877D; }
<div style="border:3px solid #EB877D">Div</div>
This div border color is #EB877D.
.myOpacity80 { color: #EB877D; opacity: 0.8; }
<p style="color:#EB877D;opacity:0.8;">80%</p>
Text with #EB877D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EB877D;}
<p style="text-shadow: 3px 3px 1px #EB877D">Text here.</p>
This text has shadow with #EB877D color.
.textShadow {text-shadow: 3px 3px 1px #EB877D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EB877D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EB877D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EB877D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EB877D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EB877D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EB877D; -webkit-box-shadow: 1px 1px 3px 2px #EB877D; box-shadow: 1px 1px 3px 2px #EB877D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EB877D; -webkit-box-shadow: 1px 1px 3px 2px #EB877D; box-shadow:1px 1px 3px 2px #EB877D;">
Div content here</div>
This text has color #EB877D on black background.
This text has color #EB877D on white background.
This text has black color on #EB877D background.
This text has white color on #EB877D background.