HEX: #E3B0EC
RGB: (227,176,236)
#E3B0EC contains mainly red and blue colors. Web safe color of #E3B0EC is #CC99FF (or #C9F).
#E3B0EC color RGB value is (227,176,236).
RGB: (227,176,236) (89%,69%,93%)
R 227 of 255 = 89%
G 176 of 255 = 69%
B 236 of 255 = 93%
R + G + B ~ 84%. #E3B0EC is quite light color.
R + G + B =
227 + 176 + 236 = 639 (100%)
R 227 of 639 ~ 35.52%
G 176 of 639 ~ 27.54%
B 236 of 639 ~ 36.93%
#E3B0EC color CMYK value is (4,25,0,7).
CMYK: (4,25,0,7) C4M25Y0K7 (4%,25%,0%,7%) (0.04/0.25/0.00/0.07)
E3 | B0 | EC | |
---|---|---|---|
RGB | 227 | 176 | 236 |
HSL | 291° | 61.22% | 80.78% |
HSB/HSV | 291° | 25.42% | 92.55% |
CMYK | 3.81% | 25.42% | 0.00% |
7.45% |
HEX | E3 | B0 | EC |
Decimal | 227 | 176 | 236 |
Binary | 11100011 | 10110000 | 11101100 |
Octal | 343 | 260 | 354 |
Examples of css and html codes for elements with #E3B0EC color. Also use rgb(227,176,236) instead hex code.
.myTextColor { color: #E3B0EC; }
<p style="color:#E3B0EC">This sample text font color is #E3B0EC.</p>
This text font color is #E3B0EC.
.myBgColor { background-color: #E3B0EC; }
<div style="background-color:#E3B0EC">Inner text</div>
This div background color is #E3B0EC.
.myBorderColor { border: 1px solid #E3B0EC; }
<div style="border:3px solid #E3B0EC">Div</div>
This div border color is #E3B0EC.
.myOpacity80 { color: #E3B0EC; opacity: 0.8; }
<p style="color:#E3B0EC;opacity:0.8;">80%</p>
Text with #E3B0EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3B0EC;}
<p style="text-shadow: 3px 3px 1px #E3B0EC">Text here.</p>
This text has shadow with #E3B0EC color.
.textShadow {text-shadow: 3px 3px 1px #E3B0EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3B0EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3B0EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3B0EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3B0EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3B0EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3B0EC; -webkit-box-shadow: 1px 1px 3px 2px #E3B0EC; box-shadow: 1px 1px 3px 2px #E3B0EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3B0EC; -webkit-box-shadow: 1px 1px 3px 2px #E3B0EC; box-shadow:1px 1px 3px 2px #E3B0EC;">
Div content here</div>
This text has color #E3B0EC on black background.
This text has color #E3B0EC on white background.
This text has black color on #E3B0EC background.
This text has white color on #E3B0EC background.