HEX: #EFDFFA
RGB: (239,223,250)
#EFDFFA contains red, green and blue colors in about the same proportion. Web safe color of #EFDFFA is #FFCCFF (or #FCF).
#EFDFFA color RGB value is (239,223,250).
RGB: (239,223,250) (94%,87%,98%)
R 239 of 255 = 94%
G 223 of 255 = 87%
B 250 of 255 = 98%
R + G + B ~ 93%. #EFDFFA is light color.
R + G + B =
239 + 223 + 250 = 712 (100%)
R 239 of 712 ~ 33.57%
G 223 of 712 ~ 31.32%
B 250 of 712 ~ 35.11%
#EFDFFA color CMYK value is (4,11,0,2).
CMYK: (4,11,0,2) C4M11Y0K2 (4%,11%,0%,2%) (0.04/0.11/0.00/0.02)
EF | DF | FA | |
---|---|---|---|
RGB | 239 | 223 | 250 |
HSL | 276° | 72.97% | 92.75% |
HSB/HSV | 276° | 10.80% | 98.04% |
CMYK | 4.40% | 10.80% | 0.00% |
1.96% |
HEX | EF | DF | FA |
Decimal | 239 | 223 | 250 |
Binary | 11101111 | 11011111 | 11111010 |
Octal | 357 | 337 | 372 |
Examples of css and html codes for elements with #EFDFFA color. Also use rgb(239,223,250) instead hex code.
.myTextColor { color: #EFDFFA; }
<p style="color:#EFDFFA">This sample text font color is #EFDFFA.</p>
This text font color is #EFDFFA.
.myBgColor { background-color: #EFDFFA; }
<div style="background-color:#EFDFFA">Inner text</div>
This div background color is #EFDFFA.
.myBorderColor { border: 1px solid #EFDFFA; }
<div style="border:3px solid #EFDFFA">Div</div>
This div border color is #EFDFFA.
.myOpacity80 { color: #EFDFFA; opacity: 0.8; }
<p style="color:#EFDFFA;opacity:0.8;">80%</p>
Text with #EFDFFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFDFFA;}
<p style="text-shadow: 3px 3px 1px #EFDFFA">Text here.</p>
This text has shadow with #EFDFFA color.
.textShadow {text-shadow: 3px 3px 1px #EFDFFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFDFFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFDFFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFDFFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFDFFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFDFFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFDFFA; -webkit-box-shadow: 1px 1px 3px 2px #EFDFFA; box-shadow: 1px 1px 3px 2px #EFDFFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFDFFA; -webkit-box-shadow: 1px 1px 3px 2px #EFDFFA; box-shadow:1px 1px 3px 2px #EFDFFA;">
Div content here</div>
This text has color #EFDFFA on black background.
This text has color #EFDFFA on white background.
This text has black color on #EFDFFA background.
This text has white color on #EFDFFA background.