HEX: #E1B0BC
RGB: (225,176,188)
#E1B0BC contains red, green and blue colors in about the same proportion. Web safe color of #E1B0BC is #CC99CC (or #C9C).
#E1B0BC color RGB value is (225,176,188).
RGB: (225,176,188) (88%,69%,74%)
R 225 of 255 = 88%
G 176 of 255 = 69%
B 188 of 255 = 74%
R + G + B ~ 77%. #E1B0BC is quite light color.
R + G + B =
225 + 176 + 188 = 589 (100%)
R 225 of 589 ~ 38.2%
G 176 of 589 ~ 29.88%
B 188 of 589 ~ 31.92%
#E1B0BC color CMYK value is (0,22,16,12).
CMYK: (0,22,16,12) C0M22Y16K12 (0%,22%,16%,12%) (0.00/0.22/0.16/0.12)
E1 | B0 | BC | |
---|---|---|---|
RGB | 225 | 176 | 188 |
HSL | 345° | 44.95% | 78.63% |
HSB/HSV | 345° | 21.78% | 88.24% |
CMYK | 0.00% | 21.78% | 16.44% |
11.76% |
HEX | E1 | B0 | BC |
Decimal | 225 | 176 | 188 |
Binary | 11100001 | 10110000 | 10111100 |
Octal | 341 | 260 | 274 |
Examples of css and html codes for elements with #E1B0BC color. Also use rgb(225,176,188) instead hex code.
.myTextColor { color: #E1B0BC; }
<p style="color:#E1B0BC">This sample text font color is #E1B0BC.</p>
This text font color is #E1B0BC.
.myBgColor { background-color: #E1B0BC; }
<div style="background-color:#E1B0BC">Inner text</div>
This div background color is #E1B0BC.
.myBorderColor { border: 1px solid #E1B0BC; }
<div style="border:3px solid #E1B0BC">Div</div>
This div border color is #E1B0BC.
.myOpacity80 { color: #E1B0BC; opacity: 0.8; }
<p style="color:#E1B0BC;opacity:0.8;">80%</p>
Text with #E1B0BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1B0BC;}
<p style="text-shadow: 3px 3px 1px #E1B0BC">Text here.</p>
This text has shadow with #E1B0BC color.
.textShadow {text-shadow: 3px 3px 1px #E1B0BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1B0BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1B0BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1B0BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1B0BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1B0BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1B0BC; -webkit-box-shadow: 1px 1px 3px 2px #E1B0BC; box-shadow: 1px 1px 3px 2px #E1B0BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1B0BC; -webkit-box-shadow: 1px 1px 3px 2px #E1B0BC; box-shadow:1px 1px 3px 2px #E1B0BC;">
Div content here</div>
This text has color #E1B0BC on black background.
This text has color #E1B0BC on white background.
This text has black color on #E1B0BC background.
This text has white color on #E1B0BC background.