HEX: #EFC0DF
RGB: (239,192,223)
#EFC0DF contains red, green and blue colors in about the same proportion. Web safe color of #EFC0DF is #FFCCCC (or #FCC).
#EFC0DF color RGB value is (239,192,223).
RGB: (239,192,223) (94%,75%,87%)
R 239 of 255 = 94%
G 192 of 255 = 75%
B 223 of 255 = 87%
R + G + B ~ 85%. #EFC0DF is quite light color.
R + G + B =
239 + 192 + 223 = 654 (100%)
R 239 of 654 ~ 36.54%
G 192 of 654 ~ 29.36%
B 223 of 654 ~ 34.1%
#EFC0DF color CMYK value is (0,20,7,6).
CMYK: (0,20,7,6) C0M20Y7K6 (0%,20%,7%,6%) (0.00/0.20/0.07/0.06)
EF | C0 | DF | |
---|---|---|---|
RGB | 239 | 192 | 223 |
HSL | 320° | 59.49% | 84.51% |
HSB/HSV | 320° | 19.67% | 93.73% |
CMYK | 0.00% | 19.67% | 6.69% |
6.27% |
HEX | EF | C0 | DF |
Decimal | 239 | 192 | 223 |
Binary | 11101111 | 11000000 | 11011111 |
Octal | 357 | 300 | 337 |
Examples of css and html codes for elements with #EFC0DF color. Also use rgb(239,192,223) instead hex code.
.myTextColor { color: #EFC0DF; }
<p style="color:#EFC0DF">This sample text font color is #EFC0DF.</p>
This text font color is #EFC0DF.
.myBgColor { background-color: #EFC0DF; }
<div style="background-color:#EFC0DF">Inner text</div>
This div background color is #EFC0DF.
.myBorderColor { border: 1px solid #EFC0DF; }
<div style="border:3px solid #EFC0DF">Div</div>
This div border color is #EFC0DF.
.myOpacity80 { color: #EFC0DF; opacity: 0.8; }
<p style="color:#EFC0DF;opacity:0.8;">80%</p>
Text with #EFC0DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFC0DF;}
<p style="text-shadow: 3px 3px 1px #EFC0DF">Text here.</p>
This text has shadow with #EFC0DF color.
.textShadow {text-shadow: 3px 3px 1px #EFC0DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFC0DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFC0DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFC0DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFC0DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFC0DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFC0DF; -webkit-box-shadow: 1px 1px 3px 2px #EFC0DF; box-shadow: 1px 1px 3px 2px #EFC0DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFC0DF; -webkit-box-shadow: 1px 1px 3px 2px #EFC0DF; box-shadow:1px 1px 3px 2px #EFC0DF;">
Div content here</div>
This text has color #EFC0DF on black background.
This text has color #EFC0DF on white background.
This text has black color on #EFC0DF background.
This text has white color on #EFC0DF background.