HEX: #EBADC0
RGB: (235,173,192)
#EBADC0 contains mainly red and blue colors. Web safe color of #EBADC0 is #FF99CC (or #F9C).
#EBADC0 color RGB value is (235,173,192).
RGB: (235,173,192) (92%,68%,75%)
R 235 of 255 = 92%
G 173 of 255 = 68%
B 192 of 255 = 75%
R + G + B ~ 78%. #EBADC0 is quite light color.
R + G + B =
235 + 173 + 192 = 600 (100%)
R 235 of 600 ~ 39.17%
G 173 of 600 ~ 28.83%
B 192 of 600 ~ 32%
#EBADC0 color CMYK value is (0,26,18,8).
CMYK: (0,26,18,8) C0M26Y18K8 (0%,26%,18%,8%) (0.00/0.26/0.18/0.08)
EB | AD | C0 | |
---|---|---|---|
RGB | 235 | 173 | 192 |
HSL | 342° | 60.78% | 80.00% |
HSB/HSV | 342° | 26.38% | 92.16% |
CMYK | 0.00% | 26.38% | 18.30% |
7.84% |
HEX | EB | AD | C0 |
Decimal | 235 | 173 | 192 |
Binary | 11101011 | 10101101 | 11000000 |
Octal | 353 | 255 | 300 |
Examples of css and html codes for elements with #EBADC0 color. Also use rgb(235,173,192) instead hex code.
.myTextColor { color: #EBADC0; }
<p style="color:#EBADC0">This sample text font color is #EBADC0.</p>
This text font color is #EBADC0.
.myBgColor { background-color: #EBADC0; }
<div style="background-color:#EBADC0">Inner text</div>
This div background color is #EBADC0.
.myBorderColor { border: 1px solid #EBADC0; }
<div style="border:3px solid #EBADC0">Div</div>
This div border color is #EBADC0.
.myOpacity80 { color: #EBADC0; opacity: 0.8; }
<p style="color:#EBADC0;opacity:0.8;">80%</p>
Text with #EBADC0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBADC0;}
<p style="text-shadow: 3px 3px 1px #EBADC0">Text here.</p>
This text has shadow with #EBADC0 color.
.textShadow {text-shadow: 3px 3px 1px #EBADC0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBADC0, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBADC0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBADC0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBADC0, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBADC0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBADC0; -webkit-box-shadow: 1px 1px 3px 2px #EBADC0; box-shadow: 1px 1px 3px 2px #EBADC0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBADC0; -webkit-box-shadow: 1px 1px 3px 2px #EBADC0; box-shadow:1px 1px 3px 2px #EBADC0;">
Div content here</div>
This text has color #EBADC0 on black background.
This text has color #EBADC0 on white background.
This text has black color on #EBADC0 background.
This text has white color on #EBADC0 background.