HEX: #EFE6DC
RGB: (239,230,220)
#EFE6DC contains red, green and blue colors in about the same proportion. Web safe color of #EFE6DC is #FFCCCC (or #FCC).
#EFE6DC color RGB value is (239,230,220).
RGB: (239,230,220) (94%,90%,86%)
R 239 of 255 = 94%
G 230 of 255 = 90%
B 220 of 255 = 86%
R + G + B ~ 90%. #EFE6DC is light color.
R + G + B =
239 + 230 + 220 = 689 (100%)
R 239 of 689 ~ 34.69%
G 230 of 689 ~ 33.38%
B 220 of 689 ~ 31.93%
#EFE6DC color CMYK value is (0,4,8,6).
CMYK: (0,4,8,6) C0M4Y8K6 (0%,4%,8%,6%) (0.00/0.04/0.08/0.06)
EF | E6 | DC | |
---|---|---|---|
RGB | 239 | 230 | 220 |
HSL | 32° | 37.25% | 90.00% |
HSB/HSV | 32° | 7.95% | 93.73% |
CMYK | 0.00% | 3.77% | 7.95% |
6.27% |
HEX | EF | E6 | DC |
Decimal | 239 | 230 | 220 |
Binary | 11101111 | 11100110 | 11011100 |
Octal | 357 | 346 | 334 |
Examples of css and html codes for elements with #EFE6DC color. Also use rgb(239,230,220) instead hex code.
.myTextColor { color: #EFE6DC; }
<p style="color:#EFE6DC">This sample text font color is #EFE6DC.</p>
This text font color is #EFE6DC.
.myBgColor { background-color: #EFE6DC; }
<div style="background-color:#EFE6DC">Inner text</div>
This div background color is #EFE6DC.
.myBorderColor { border: 1px solid #EFE6DC; }
<div style="border:3px solid #EFE6DC">Div</div>
This div border color is #EFE6DC.
.myOpacity80 { color: #EFE6DC; opacity: 0.8; }
<p style="color:#EFE6DC;opacity:0.8;">80%</p>
Text with #EFE6DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFE6DC;}
<p style="text-shadow: 3px 3px 1px #EFE6DC">Text here.</p>
This text has shadow with #EFE6DC color.
.textShadow {text-shadow: 3px 3px 1px #EFE6DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFE6DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFE6DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFE6DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFE6DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFE6DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFE6DC; -webkit-box-shadow: 1px 1px 3px 2px #EFE6DC; box-shadow: 1px 1px 3px 2px #EFE6DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFE6DC; -webkit-box-shadow: 1px 1px 3px 2px #EFE6DC; box-shadow:1px 1px 3px 2px #EFE6DC;">
Div content here</div>
This text has color #EFE6DC on black background.
This text has color #EFE6DC on white background.
This text has black color on #EFE6DC background.
This text has white color on #EFE6DC background.