HEX: #E0BAEB
RGB: (224,186,235)
#E0BAEB contains red, green and blue colors in about the same proportion. Web safe color of #E0BAEB is #CCCCFF (or #CCF).
#E0BAEB color RGB value is (224,186,235).
RGB: (224,186,235) (88%,73%,92%)
R 224 of 255 = 88%
G 186 of 255 = 73%
B 235 of 255 = 92%
R + G + B ~ 84%. #E0BAEB is quite light color.
R + G + B =
224 + 186 + 235 = 645 (100%)
R 224 of 645 ~ 34.73%
G 186 of 645 ~ 28.84%
B 235 of 645 ~ 36.43%
#E0BAEB color CMYK value is (5,21,0,8).
CMYK: (5,21,0,8) C5M21Y0K8 (5%,21%,0%,8%) (0.05/0.21/0.00/0.08)
E0 | BA | EB | |
---|---|---|---|
RGB | 224 | 186 | 235 |
HSL | 287° | 55.06% | 82.55% |
HSB/HSV | 287° | 20.85% | 92.16% |
CMYK | 4.68% | 20.85% | 0.00% |
7.84% |
HEX | E0 | BA | EB |
Decimal | 224 | 186 | 235 |
Binary | 11100000 | 10111010 | 11101011 |
Octal | 340 | 272 | 353 |
Examples of css and html codes for elements with #E0BAEB color. Also use rgb(224,186,235) instead hex code.
.myTextColor { color: #E0BAEB; }
<p style="color:#E0BAEB">This sample text font color is #E0BAEB.</p>
This text font color is #E0BAEB.
.myBgColor { background-color: #E0BAEB; }
<div style="background-color:#E0BAEB">Inner text</div>
This div background color is #E0BAEB.
.myBorderColor { border: 1px solid #E0BAEB; }
<div style="border:3px solid #E0BAEB">Div</div>
This div border color is #E0BAEB.
.myOpacity80 { color: #E0BAEB; opacity: 0.8; }
<p style="color:#E0BAEB;opacity:0.8;">80%</p>
Text with #E0BAEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0BAEB;}
<p style="text-shadow: 3px 3px 1px #E0BAEB">Text here.</p>
This text has shadow with #E0BAEB color.
.textShadow {text-shadow: 3px 3px 1px #E0BAEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0BAEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0BAEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0BAEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0BAEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0BAEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0BAEB; -webkit-box-shadow: 1px 1px 3px 2px #E0BAEB; box-shadow: 1px 1px 3px 2px #E0BAEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0BAEB; -webkit-box-shadow: 1px 1px 3px 2px #E0BAEB; box-shadow:1px 1px 3px 2px #E0BAEB;">
Div content here</div>
This text has color #E0BAEB on black background.
This text has color #E0BAEB on white background.
This text has black color on #E0BAEB background.
This text has white color on #E0BAEB background.