HEX: #EBC4BE
RGB: (235,196,190)
#EBC4BE contains red, green and blue colors in about the same proportion. Web safe color of #EBC4BE is #FFCCCC (or #FCC).
#EBC4BE color RGB value is (235,196,190).
RGB: (235,196,190) (92%,77%,75%)
R 235 of 255 = 92%
G 196 of 255 = 77%
B 190 of 255 = 75%
R + G + B ~ 81%. #EBC4BE is quite light color.
R + G + B =
235 + 196 + 190 = 621 (100%)
R 235 of 621 ~ 37.84%
G 196 of 621 ~ 31.56%
B 190 of 621 ~ 30.6%
#EBC4BE color CMYK value is (0,17,19,8).
CMYK: (0,17,19,8) C0M17Y19K8 (0%,17%,19%,8%) (0.00/0.17/0.19/0.08)
EB | C4 | BE | |
---|---|---|---|
RGB | 235 | 196 | 190 |
HSL | 8° | 52.94% | 83.33% |
HSB/HSV | 8° | 19.15% | 92.16% |
CMYK | 0.00% | 16.60% | 19.15% |
7.84% |
HEX | EB | C4 | BE |
Decimal | 235 | 196 | 190 |
Binary | 11101011 | 11000100 | 10111110 |
Octal | 353 | 304 | 276 |
Examples of css and html codes for elements with #EBC4BE color. Also use rgb(235,196,190) instead hex code.
.myTextColor { color: #EBC4BE; }
<p style="color:#EBC4BE">This sample text font color is #EBC4BE.</p>
This text font color is #EBC4BE.
.myBgColor { background-color: #EBC4BE; }
<div style="background-color:#EBC4BE">Inner text</div>
This div background color is #EBC4BE.
.myBorderColor { border: 1px solid #EBC4BE; }
<div style="border:3px solid #EBC4BE">Div</div>
This div border color is #EBC4BE.
.myOpacity80 { color: #EBC4BE; opacity: 0.8; }
<p style="color:#EBC4BE;opacity:0.8;">80%</p>
Text with #EBC4BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBC4BE;}
<p style="text-shadow: 3px 3px 1px #EBC4BE">Text here.</p>
This text has shadow with #EBC4BE color.
.textShadow {text-shadow: 3px 3px 1px #EBC4BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBC4BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBC4BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBC4BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBC4BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBC4BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBC4BE; -webkit-box-shadow: 1px 1px 3px 2px #EBC4BE; box-shadow: 1px 1px 3px 2px #EBC4BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBC4BE; -webkit-box-shadow: 1px 1px 3px 2px #EBC4BE; box-shadow:1px 1px 3px 2px #EBC4BE;">
Div content here</div>
This text has color #EBC4BE on black background.
This text has color #EBC4BE on white background.
This text has black color on #EBC4BE background.
This text has white color on #EBC4BE background.