HEX: #E6B4FE
RGB: (230,180,254)
#E6B4FE contains mainly red and blue colors. Web safe color of #E6B4FE is #CCCCFF (or #CCF).
#E6B4FE color RGB value is (230,180,254).
RGB: (230,180,254) (90%,71%,100%)
R 230 of 255 = 90%
G 180 of 255 = 71%
B 254 of 255 = 100%
R + G + B ~ 87%. #E6B4FE is light color.
R + G + B =
230 + 180 + 254 = 664 (100%)
R 230 of 664 ~ 34.64%
G 180 of 664 ~ 27.11%
B 254 of 664 ~ 38.25%
#E6B4FE color CMYK value is (9,29,0,0).
CMYK: (9,29,0,0) C9M29Y0K0 (9%,29%,0%,0%) (0.09/0.29/0.00/0.00)
E6 | B4 | FE | |
---|---|---|---|
RGB | 230 | 180 | 254 |
HSL | 281° | 97.37% | 85.10% |
HSB/HSV | 281° | 29.13% | 99.61% |
CMYK | 9.45% | 29.13% | 0.00% |
0.39% |
HEX | E6 | B4 | FE |
Decimal | 230 | 180 | 254 |
Binary | 11100110 | 10110100 | 11111110 |
Octal | 346 | 264 | 376 |
Examples of css and html codes for elements with #E6B4FE color. Also use rgb(230,180,254) instead hex code.
.myTextColor { color: #E6B4FE; }
<p style="color:#E6B4FE">This sample text font color is #E6B4FE.</p>
This text font color is #E6B4FE.
.myBgColor { background-color: #E6B4FE; }
<div style="background-color:#E6B4FE">Inner text</div>
This div background color is #E6B4FE.
.myBorderColor { border: 1px solid #E6B4FE; }
<div style="border:3px solid #E6B4FE">Div</div>
This div border color is #E6B4FE.
.myOpacity80 { color: #E6B4FE; opacity: 0.8; }
<p style="color:#E6B4FE;opacity:0.8;">80%</p>
Text with #E6B4FE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6B4FE;}
<p style="text-shadow: 3px 3px 1px #E6B4FE">Text here.</p>
This text has shadow with #E6B4FE color.
.textShadow {text-shadow: 3px 3px 1px #E6B4FE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6B4FE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6B4FE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6B4FE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6B4FE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6B4FE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6B4FE; -webkit-box-shadow: 1px 1px 3px 2px #E6B4FE; box-shadow: 1px 1px 3px 2px #E6B4FE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6B4FE; -webkit-box-shadow: 1px 1px 3px 2px #E6B4FE; box-shadow:1px 1px 3px 2px #E6B4FE;">
Div content here</div>
This text has color #E6B4FE on black background.
This text has color #E6B4FE on white background.
This text has black color on #E6B4FE background.
This text has white color on #E6B4FE background.