HEX: #EFD4EB
RGB: (239,212,235)
#EFD4EB contains red, green and blue colors in about the same proportion. Web safe color of #EFD4EB is #FFCCFF (or #FCF).
#EFD4EB color RGB value is (239,212,235).
RGB: (239,212,235) (94%,83%,92%)
R 239 of 255 = 94%
G 212 of 255 = 83%
B 235 of 255 = 92%
R + G + B ~ 90%. #EFD4EB is light color.
R + G + B =
239 + 212 + 235 = 686 (100%)
R 239 of 686 ~ 34.84%
G 212 of 686 ~ 30.9%
B 235 of 686 ~ 34.26%
#EFD4EB color CMYK value is (0,11,2,6).
CMYK: (0,11,2,6) C0M11Y2K6 (0%,11%,2%,6%) (0.00/0.11/0.02/0.06)
EF | D4 | EB | |
---|---|---|---|
RGB | 239 | 212 | 235 |
HSL | 309° | 45.76% | 88.43% |
HSB/HSV | 309° | 11.30% | 93.73% |
CMYK | 0.00% | 11.30% | 1.67% |
6.27% |
HEX | EF | D4 | EB |
Decimal | 239 | 212 | 235 |
Binary | 11101111 | 11010100 | 11101011 |
Octal | 357 | 324 | 353 |
Examples of css and html codes for elements with #EFD4EB color. Also use rgb(239,212,235) instead hex code.
.myTextColor { color: #EFD4EB; }
<p style="color:#EFD4EB">This sample text font color is #EFD4EB.</p>
This text font color is #EFD4EB.
.myBgColor { background-color: #EFD4EB; }
<div style="background-color:#EFD4EB">Inner text</div>
This div background color is #EFD4EB.
.myBorderColor { border: 1px solid #EFD4EB; }
<div style="border:3px solid #EFD4EB">Div</div>
This div border color is #EFD4EB.
.myOpacity80 { color: #EFD4EB; opacity: 0.8; }
<p style="color:#EFD4EB;opacity:0.8;">80%</p>
Text with #EFD4EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD4EB;}
<p style="text-shadow: 3px 3px 1px #EFD4EB">Text here.</p>
This text has shadow with #EFD4EB color.
.textShadow {text-shadow: 3px 3px 1px #EFD4EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD4EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD4EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD4EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD4EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD4EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD4EB; -webkit-box-shadow: 1px 1px 3px 2px #EFD4EB; box-shadow: 1px 1px 3px 2px #EFD4EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD4EB; -webkit-box-shadow: 1px 1px 3px 2px #EFD4EB; box-shadow:1px 1px 3px 2px #EFD4EB;">
Div content here</div>
This text has color #EFD4EB on black background.
This text has color #EFD4EB on white background.
This text has black color on #EFD4EB background.
This text has white color on #EFD4EB background.