HEX: #EFBDFB
RGB: (239,189,251)
#EFBDFB contains mainly red and blue colors. Web safe color of #EFBDFB is #FFCCFF (or #FCF).
#EFBDFB color RGB value is (239,189,251).
RGB: (239,189,251) (94%,74%,98%)
R 239 of 255 = 94%
G 189 of 255 = 74%
B 251 of 255 = 98%
R + G + B ~ 89%. #EFBDFB is light color.
R + G + B =
239 + 189 + 251 = 679 (100%)
R 239 of 679 ~ 35.2%
G 189 of 679 ~ 27.84%
B 251 of 679 ~ 36.97%
#EFBDFB color CMYK value is (5,25,0,2).
CMYK: (5,25,0,2) C5M25Y0K2 (5%,25%,0%,2%) (0.05/0.25/0.00/0.02)
EF | BD | FB | |
---|---|---|---|
RGB | 239 | 189 | 251 |
HSL | 288° | 88.57% | 86.27% |
HSB/HSV | 288° | 24.70% | 98.43% |
CMYK | 4.78% | 24.70% | 0.00% |
1.57% |
HEX | EF | BD | FB |
Decimal | 239 | 189 | 251 |
Binary | 11101111 | 10111101 | 11111011 |
Octal | 357 | 275 | 373 |
Examples of css and html codes for elements with #EFBDFB color. Also use rgb(239,189,251) instead hex code.
.myTextColor { color: #EFBDFB; }
<p style="color:#EFBDFB">This sample text font color is #EFBDFB.</p>
This text font color is #EFBDFB.
.myBgColor { background-color: #EFBDFB; }
<div style="background-color:#EFBDFB">Inner text</div>
This div background color is #EFBDFB.
.myBorderColor { border: 1px solid #EFBDFB; }
<div style="border:3px solid #EFBDFB">Div</div>
This div border color is #EFBDFB.
.myOpacity80 { color: #EFBDFB; opacity: 0.8; }
<p style="color:#EFBDFB;opacity:0.8;">80%</p>
Text with #EFBDFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFBDFB;}
<p style="text-shadow: 3px 3px 1px #EFBDFB">Text here.</p>
This text has shadow with #EFBDFB color.
.textShadow {text-shadow: 3px 3px 1px #EFBDFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFBDFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFBDFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFBDFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFBDFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFBDFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFBDFB; -webkit-box-shadow: 1px 1px 3px 2px #EFBDFB; box-shadow: 1px 1px 3px 2px #EFBDFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFBDFB; -webkit-box-shadow: 1px 1px 3px 2px #EFBDFB; box-shadow:1px 1px 3px 2px #EFBDFB;">
Div content here</div>
This text has color #EFBDFB on black background.
This text has color #EFBDFB on white background.
This text has black color on #EFBDFB background.
This text has white color on #EFBDFB background.