HEX: #EBB5BC
RGB: (235,181,188)
#EBB5BC contains red, green and blue colors in about the same proportion. Web safe color of #EBB5BC is #FFCCCC (or #FCC).
#EBB5BC color RGB value is (235,181,188).
RGB: (235,181,188) (92%,71%,74%)
R 235 of 255 = 92%
G 181 of 255 = 71%
B 188 of 255 = 74%
R + G + B ~ 79%. #EBB5BC is quite light color.
R + G + B =
235 + 181 + 188 = 604 (100%)
R 235 of 604 ~ 38.91%
G 181 of 604 ~ 29.97%
B 188 of 604 ~ 31.13%
#EBB5BC color CMYK value is (0,23,20,8).
CMYK: (0,23,20,8) C0M23Y20K8 (0%,23%,20%,8%) (0.00/0.23/0.20/0.08)
EB | B5 | BC | |
---|---|---|---|
RGB | 235 | 181 | 188 |
HSL | 352° | 57.45% | 81.57% |
HSB/HSV | 352° | 22.98% | 92.16% |
CMYK | 0.00% | 22.98% | 20.00% |
7.84% |
HEX | EB | B5 | BC |
Decimal | 235 | 181 | 188 |
Binary | 11101011 | 10110101 | 10111100 |
Octal | 353 | 265 | 274 |
Examples of css and html codes for elements with #EBB5BC color. Also use rgb(235,181,188) instead hex code.
.myTextColor { color: #EBB5BC; }
<p style="color:#EBB5BC">This sample text font color is #EBB5BC.</p>
This text font color is #EBB5BC.
.myBgColor { background-color: #EBB5BC; }
<div style="background-color:#EBB5BC">Inner text</div>
This div background color is #EBB5BC.
.myBorderColor { border: 1px solid #EBB5BC; }
<div style="border:3px solid #EBB5BC">Div</div>
This div border color is #EBB5BC.
.myOpacity80 { color: #EBB5BC; opacity: 0.8; }
<p style="color:#EBB5BC;opacity:0.8;">80%</p>
Text with #EBB5BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBB5BC;}
<p style="text-shadow: 3px 3px 1px #EBB5BC">Text here.</p>
This text has shadow with #EBB5BC color.
.textShadow {text-shadow: 3px 3px 1px #EBB5BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBB5BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBB5BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBB5BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBB5BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBB5BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBB5BC; -webkit-box-shadow: 1px 1px 3px 2px #EBB5BC; box-shadow: 1px 1px 3px 2px #EBB5BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBB5BC; -webkit-box-shadow: 1px 1px 3px 2px #EBB5BC; box-shadow:1px 1px 3px 2px #EBB5BC;">
Div content here</div>
This text has color #EBB5BC on black background.
This text has color #EBB5BC on white background.
This text has black color on #EBB5BC background.
This text has white color on #EBB5BC background.