HEX: #EFBDEA
RGB: (239,189,234)
#EFBDEA contains red, green and blue colors in about the same proportion. Web safe color of #EFBDEA is #FFCCFF (or #FCF).
#EFBDEA color RGB value is (239,189,234).
RGB: (239,189,234) (94%,74%,92%)
R 239 of 255 = 94%
G 189 of 255 = 74%
B 234 of 255 = 92%
R + G + B ~ 87%. #EFBDEA is light color.
R + G + B =
239 + 189 + 234 = 662 (100%)
R 239 of 662 ~ 36.1%
G 189 of 662 ~ 28.55%
B 234 of 662 ~ 35.35%
#EFBDEA color CMYK value is (0,21,2,6).
CMYK: (0,21,2,6) C0M21Y2K6 (0%,21%,2%,6%) (0.00/0.21/0.02/0.06)
EF | BD | EA | |
---|---|---|---|
RGB | 239 | 189 | 234 |
HSL | 306° | 60.98% | 83.92% |
HSB/HSV | 306° | 20.92% | 93.73% |
CMYK | 0.00% | 20.92% | 2.09% |
6.27% |
HEX | EF | BD | EA |
Decimal | 239 | 189 | 234 |
Binary | 11101111 | 10111101 | 11101010 |
Octal | 357 | 275 | 352 |
Examples of css and html codes for elements with #EFBDEA color. Also use rgb(239,189,234) instead hex code.
.myTextColor { color: #EFBDEA; }
<p style="color:#EFBDEA">This sample text font color is #EFBDEA.</p>
This text font color is #EFBDEA.
.myBgColor { background-color: #EFBDEA; }
<div style="background-color:#EFBDEA">Inner text</div>
This div background color is #EFBDEA.
.myBorderColor { border: 1px solid #EFBDEA; }
<div style="border:3px solid #EFBDEA">Div</div>
This div border color is #EFBDEA.
.myOpacity80 { color: #EFBDEA; opacity: 0.8; }
<p style="color:#EFBDEA;opacity:0.8;">80%</p>
Text with #EFBDEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFBDEA;}
<p style="text-shadow: 3px 3px 1px #EFBDEA">Text here.</p>
This text has shadow with #EFBDEA color.
.textShadow {text-shadow: 3px 3px 1px #EFBDEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFBDEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFBDEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFBDEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFBDEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFBDEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFBDEA; -webkit-box-shadow: 1px 1px 3px 2px #EFBDEA; box-shadow: 1px 1px 3px 2px #EFBDEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFBDEA; -webkit-box-shadow: 1px 1px 3px 2px #EFBDEA; box-shadow:1px 1px 3px 2px #EFBDEA;">
Div content here</div>
This text has color #EFBDEA on black background.
This text has color #EFBDEA on white background.
This text has black color on #EFBDEA background.
This text has white color on #EFBDEA background.