HEX: #E5BCF2
RGB: (229,188,242)
#E5BCF2 contains red, green and blue colors in about the same proportion. Web safe color of #E5BCF2 is #CCCCFF (or #CCF).
#E5BCF2 color RGB value is (229,188,242).
RGB: (229,188,242) (90%,74%,95%)
R 229 of 255 = 90%
G 188 of 255 = 74%
B 242 of 255 = 95%
R + G + B ~ 86%. #E5BCF2 is light color.
R + G + B =
229 + 188 + 242 = 659 (100%)
R 229 of 659 ~ 34.75%
G 188 of 659 ~ 28.53%
B 242 of 659 ~ 36.72%
#E5BCF2 color CMYK value is (5,22,0,5).
CMYK: (5,22,0,5) C5M22Y0K5 (5%,22%,0%,5%) (0.05/0.22/0.00/0.05)
E5 | BC | F2 | |
---|---|---|---|
RGB | 229 | 188 | 242 |
HSL | 286° | 67.50% | 84.31% |
HSB/HSV | 286° | 22.31% | 94.90% |
CMYK | 5.37% | 22.31% | 0.00% |
5.10% |
HEX | E5 | BC | F2 |
Decimal | 229 | 188 | 242 |
Binary | 11100101 | 10111100 | 11110010 |
Octal | 345 | 274 | 362 |
Examples of css and html codes for elements with #E5BCF2 color. Also use rgb(229,188,242) instead hex code.
.myTextColor { color: #E5BCF2; }
<p style="color:#E5BCF2">This sample text font color is #E5BCF2.</p>
This text font color is #E5BCF2.
.myBgColor { background-color: #E5BCF2; }
<div style="background-color:#E5BCF2">Inner text</div>
This div background color is #E5BCF2.
.myBorderColor { border: 1px solid #E5BCF2; }
<div style="border:3px solid #E5BCF2">Div</div>
This div border color is #E5BCF2.
.myOpacity80 { color: #E5BCF2; opacity: 0.8; }
<p style="color:#E5BCF2;opacity:0.8;">80%</p>
Text with #E5BCF2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5BCF2;}
<p style="text-shadow: 3px 3px 1px #E5BCF2">Text here.</p>
This text has shadow with #E5BCF2 color.
.textShadow {text-shadow: 3px 3px 1px #E5BCF2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5BCF2, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5BCF2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5BCF2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5BCF2, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5BCF2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5BCF2; -webkit-box-shadow: 1px 1px 3px 2px #E5BCF2; box-shadow: 1px 1px 3px 2px #E5BCF2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5BCF2; -webkit-box-shadow: 1px 1px 3px 2px #E5BCF2; box-shadow:1px 1px 3px 2px #E5BCF2;">
Div content here</div>
This text has color #E5BCF2 on black background.
This text has color #E5BCF2 on white background.
This text has black color on #E5BCF2 background.
This text has white color on #E5BCF2 background.