HEX: #EFBADD
RGB: (239,186,221)
#EFBADD contains red, green and blue colors in about the same proportion. Web safe color of #EFBADD is #FFCCCC (or #FCC).
#EFBADD color RGB value is (239,186,221).
RGB: (239,186,221) (94%,73%,87%)
R 239 of 255 = 94%
G 186 of 255 = 73%
B 221 of 255 = 87%
R + G + B ~ 85%. #EFBADD is quite light color.
R + G + B =
239 + 186 + 221 = 646 (100%)
R 239 of 646 ~ 37%
G 186 of 646 ~ 28.79%
B 221 of 646 ~ 34.21%
#EFBADD color CMYK value is (0,22,8,6).
CMYK: (0,22,8,6) C0M22Y8K6 (0%,22%,8%,6%) (0.00/0.22/0.08/0.06)
EF | BA | DD | |
---|---|---|---|
RGB | 239 | 186 | 221 |
HSL | 320° | 62.35% | 83.33% |
HSB/HSV | 320° | 22.18% | 93.73% |
CMYK | 0.00% | 22.18% | 7.53% |
6.27% |
HEX | EF | BA | DD |
Decimal | 239 | 186 | 221 |
Binary | 11101111 | 10111010 | 11011101 |
Octal | 357 | 272 | 335 |
Examples of css and html codes for elements with #EFBADD color. Also use rgb(239,186,221) instead hex code.
.myTextColor { color: #EFBADD; }
<p style="color:#EFBADD">This sample text font color is #EFBADD.</p>
This text font color is #EFBADD.
.myBgColor { background-color: #EFBADD; }
<div style="background-color:#EFBADD">Inner text</div>
This div background color is #EFBADD.
.myBorderColor { border: 1px solid #EFBADD; }
<div style="border:3px solid #EFBADD">Div</div>
This div border color is #EFBADD.
.myOpacity80 { color: #EFBADD; opacity: 0.8; }
<p style="color:#EFBADD;opacity:0.8;">80%</p>
Text with #EFBADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFBADD;}
<p style="text-shadow: 3px 3px 1px #EFBADD">Text here.</p>
This text has shadow with #EFBADD color.
.textShadow {text-shadow: 3px 3px 1px #EFBADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFBADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFBADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFBADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFBADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFBADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFBADD; -webkit-box-shadow: 1px 1px 3px 2px #EFBADD; box-shadow: 1px 1px 3px 2px #EFBADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFBADD; -webkit-box-shadow: 1px 1px 3px 2px #EFBADD; box-shadow:1px 1px 3px 2px #EFBADD;">
Div content here</div>
This text has color #EFBADD on black background.
This text has color #EFBADD on white background.
This text has black color on #EFBADD background.
This text has white color on #EFBADD background.