HEX: #E7BBEB
RGB: (231,187,235)
#E7BBEB contains red, green and blue colors in about the same proportion. Web safe color of #E7BBEB is #FFCCFF (or #FCF).
#E7BBEB color RGB value is (231,187,235).
RGB: (231,187,235) (91%,73%,92%)
R 231 of 255 = 91%
G 187 of 255 = 73%
B 235 of 255 = 92%
R + G + B ~ 85%. #E7BBEB is quite light color.
R + G + B =
231 + 187 + 235 = 653 (100%)
R 231 of 653 ~ 35.38%
G 187 of 653 ~ 28.64%
B 235 of 653 ~ 35.99%
#E7BBEB color CMYK value is (2,20,0,8).
CMYK: (2,20,0,8) C2M20Y0K8 (2%,20%,0%,8%) (0.02/0.20/0.00/0.08)
E7 | BB | EB | |
---|---|---|---|
RGB | 231 | 187 | 235 |
HSL | 295° | 54.55% | 82.75% |
HSB/HSV | 295° | 20.43% | 92.16% |
CMYK | 1.70% | 20.43% | 0.00% |
7.84% |
HEX | E7 | BB | EB |
Decimal | 231 | 187 | 235 |
Binary | 11100111 | 10111011 | 11101011 |
Octal | 347 | 273 | 353 |
Examples of css and html codes for elements with #E7BBEB color. Also use rgb(231,187,235) instead hex code.
.myTextColor { color: #E7BBEB; }
<p style="color:#E7BBEB">This sample text font color is #E7BBEB.</p>
This text font color is #E7BBEB.
.myBgColor { background-color: #E7BBEB; }
<div style="background-color:#E7BBEB">Inner text</div>
This div background color is #E7BBEB.
.myBorderColor { border: 1px solid #E7BBEB; }
<div style="border:3px solid #E7BBEB">Div</div>
This div border color is #E7BBEB.
.myOpacity80 { color: #E7BBEB; opacity: 0.8; }
<p style="color:#E7BBEB;opacity:0.8;">80%</p>
Text with #E7BBEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7BBEB;}
<p style="text-shadow: 3px 3px 1px #E7BBEB">Text here.</p>
This text has shadow with #E7BBEB color.
.textShadow {text-shadow: 3px 3px 1px #E7BBEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7BBEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7BBEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7BBEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7BBEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7BBEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7BBEB; -webkit-box-shadow: 1px 1px 3px 2px #E7BBEB; box-shadow: 1px 1px 3px 2px #E7BBEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7BBEB; -webkit-box-shadow: 1px 1px 3px 2px #E7BBEB; box-shadow:1px 1px 3px 2px #E7BBEB;">
Div content here</div>
This text has color #E7BBEB on black background.
This text has color #E7BBEB on white background.
This text has black color on #E7BBEB background.
This text has white color on #E7BBEB background.