HEX: #E0BEED
RGB: (224,190,237)
#E0BEED contains red, green and blue colors in about the same proportion. Web safe color of #E0BEED is #CCCCFF (or #CCF).
#E0BEED color RGB value is (224,190,237).
RGB: (224,190,237) (88%,75%,93%)
R 224 of 255 = 88%
G 190 of 255 = 75%
B 237 of 255 = 93%
R + G + B ~ 85%. #E0BEED is quite light color.
R + G + B =
224 + 190 + 237 = 651 (100%)
R 224 of 651 ~ 34.41%
G 190 of 651 ~ 29.19%
B 237 of 651 ~ 36.41%
#E0BEED color CMYK value is (5,20,0,7).
CMYK: (5,20,0,7) C5M20Y0K7 (5%,20%,0%,7%) (0.05/0.20/0.00/0.07)
E0 | BE | ED | |
---|---|---|---|
RGB | 224 | 190 | 237 |
HSL | 283° | 56.63% | 83.73% |
HSB/HSV | 283° | 19.83% | 92.94% |
CMYK | 5.49% | 19.83% | 0.00% |
7.06% |
HEX | E0 | BE | ED |
Decimal | 224 | 190 | 237 |
Binary | 11100000 | 10111110 | 11101101 |
Octal | 340 | 276 | 355 |
Examples of css and html codes for elements with #E0BEED color. Also use rgb(224,190,237) instead hex code.
.myTextColor { color: #E0BEED; }
<p style="color:#E0BEED">This sample text font color is #E0BEED.</p>
This text font color is #E0BEED.
.myBgColor { background-color: #E0BEED; }
<div style="background-color:#E0BEED">Inner text</div>
This div background color is #E0BEED.
.myBorderColor { border: 1px solid #E0BEED; }
<div style="border:3px solid #E0BEED">Div</div>
This div border color is #E0BEED.
.myOpacity80 { color: #E0BEED; opacity: 0.8; }
<p style="color:#E0BEED;opacity:0.8;">80%</p>
Text with #E0BEED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0BEED;}
<p style="text-shadow: 3px 3px 1px #E0BEED">Text here.</p>
This text has shadow with #E0BEED color.
.textShadow {text-shadow: 3px 3px 1px #E0BEED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0BEED, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0BEED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0BEED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0BEED, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0BEED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0BEED; -webkit-box-shadow: 1px 1px 3px 2px #E0BEED; box-shadow: 1px 1px 3px 2px #E0BEED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0BEED; -webkit-box-shadow: 1px 1px 3px 2px #E0BEED; box-shadow:1px 1px 3px 2px #E0BEED;">
Div content here</div>
This text has color #E0BEED on black background.
This text has color #E0BEED on white background.
This text has black color on #E0BEED background.
This text has white color on #E0BEED background.