HEX: #EBC8BD
RGB: (235,200,189)
#EBC8BD contains red, green and blue colors in about the same proportion. Web safe color of #EBC8BD is #FFCCCC (or #FCC).
#EBC8BD color RGB value is (235,200,189).
RGB: (235,200,189) (92%,78%,74%)
R 235 of 255 = 92%
G 200 of 255 = 78%
B 189 of 255 = 74%
R + G + B ~ 81%. #EBC8BD is quite light color.
R + G + B =
235 + 200 + 189 = 624 (100%)
R 235 of 624 ~ 37.66%
G 200 of 624 ~ 32.05%
B 189 of 624 ~ 30.29%
#EBC8BD color CMYK value is (0,15,20,8).
CMYK: (0,15,20,8) C0M15Y20K8 (0%,15%,20%,8%) (0.00/0.15/0.20/0.08)
EB | C8 | BD | |
---|---|---|---|
RGB | 235 | 200 | 189 |
HSL | 14° | 53.49% | 83.14% |
HSB/HSV | 14° | 19.57% | 92.16% |
CMYK | 0.00% | 14.89% | 19.57% |
7.84% |
HEX | EB | C8 | BD |
Decimal | 235 | 200 | 189 |
Binary | 11101011 | 11001000 | 10111101 |
Octal | 353 | 310 | 275 |
Examples of css and html codes for elements with #EBC8BD color. Also use rgb(235,200,189) instead hex code.
.myTextColor { color: #EBC8BD; }
<p style="color:#EBC8BD">This sample text font color is #EBC8BD.</p>
This text font color is #EBC8BD.
.myBgColor { background-color: #EBC8BD; }
<div style="background-color:#EBC8BD">Inner text</div>
This div background color is #EBC8BD.
.myBorderColor { border: 1px solid #EBC8BD; }
<div style="border:3px solid #EBC8BD">Div</div>
This div border color is #EBC8BD.
.myOpacity80 { color: #EBC8BD; opacity: 0.8; }
<p style="color:#EBC8BD;opacity:0.8;">80%</p>
Text with #EBC8BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBC8BD;}
<p style="text-shadow: 3px 3px 1px #EBC8BD">Text here.</p>
This text has shadow with #EBC8BD color.
.textShadow {text-shadow: 3px 3px 1px #EBC8BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBC8BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBC8BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBC8BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBC8BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBC8BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBC8BD; -webkit-box-shadow: 1px 1px 3px 2px #EBC8BD; box-shadow: 1px 1px 3px 2px #EBC8BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBC8BD; -webkit-box-shadow: 1px 1px 3px 2px #EBC8BD; box-shadow:1px 1px 3px 2px #EBC8BD;">
Div content here</div>
This text has color #EBC8BD on black background.
This text has color #EBC8BD on white background.
This text has black color on #EBC8BD background.
This text has white color on #EBC8BD background.