HEX: #E4BEFD
RGB: (228,190,253)
#E4BEFD contains mainly red and blue colors. Web safe color of #E4BEFD is #CCCCFF (or #CCF).
#E4BEFD color RGB value is (228,190,253).
RGB: (228,190,253) (89%,75%,99%)
R 228 of 255 = 89%
G 190 of 255 = 75%
B 253 of 255 = 99%
R + G + B ~ 88%. #E4BEFD is light color.
R + G + B =
228 + 190 + 253 = 671 (100%)
R 228 of 671 ~ 33.98%
G 190 of 671 ~ 28.32%
B 253 of 671 ~ 37.7%
#E4BEFD color CMYK value is (10,25,0,1).
CMYK: (10,25,0,1) C10M25Y0K1 (10%,25%,0%,1%) (0.10/0.25/0.00/0.01)
E4 | BE | FD | |
---|---|---|---|
RGB | 228 | 190 | 253 |
HSL | 276° | 94.03% | 86.86% |
HSB/HSV | 276° | 24.90% | 99.22% |
CMYK | 9.88% | 24.90% | 0.00% |
0.78% |
HEX | E4 | BE | FD |
Decimal | 228 | 190 | 253 |
Binary | 11100100 | 10111110 | 11111101 |
Octal | 344 | 276 | 375 |
Examples of css and html codes for elements with #E4BEFD color. Also use rgb(228,190,253) instead hex code.
.myTextColor { color: #E4BEFD; }
<p style="color:#E4BEFD">This sample text font color is #E4BEFD.</p>
This text font color is #E4BEFD.
.myBgColor { background-color: #E4BEFD; }
<div style="background-color:#E4BEFD">Inner text</div>
This div background color is #E4BEFD.
.myBorderColor { border: 1px solid #E4BEFD; }
<div style="border:3px solid #E4BEFD">Div</div>
This div border color is #E4BEFD.
.myOpacity80 { color: #E4BEFD; opacity: 0.8; }
<p style="color:#E4BEFD;opacity:0.8;">80%</p>
Text with #E4BEFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4BEFD;}
<p style="text-shadow: 3px 3px 1px #E4BEFD">Text here.</p>
This text has shadow with #E4BEFD color.
.textShadow {text-shadow: 3px 3px 1px #E4BEFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4BEFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4BEFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4BEFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4BEFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4BEFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4BEFD; -webkit-box-shadow: 1px 1px 3px 2px #E4BEFD; box-shadow: 1px 1px 3px 2px #E4BEFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4BEFD; -webkit-box-shadow: 1px 1px 3px 2px #E4BEFD; box-shadow:1px 1px 3px 2px #E4BEFD;">
Div content here</div>
This text has color #E4BEFD on black background.
This text has color #E4BEFD on white background.
This text has black color on #E4BEFD background.
This text has white color on #E4BEFD background.