HEX: #EFEFEF
RGB: (239,239,239)
#EFEFEF contains red, green and blue colors in about the same proportion. Web safe color of #EFEFEF is #FFFFFF (or #FFF).
#EFEFEF color RGB value is (239,239,239).
RGB: (239,239,239) (94%,94%,94%)
R 239 of 255 = 94%
G 239 of 255 = 94%
B 239 of 255 = 94%
R + G + B ~ 94%. #EFEFEF is light color.
R + G + B =
239 + 239 + 239 = 717 (100%)
R 239 of 717 ~ 33.33%
G 239 of 717 ~ 33.33%
B 239 of 717 ~ 33.33%
#EFEFEF color CMYK value is (0,0,0,6).
CMYK: (0,0,0,6) C0M0Y0K6 (0%,0%,0%,6%) (0.00/0.00/0.00/0.06)
EF | EF | EF | |
---|---|---|---|
RGB | 239 | 239 | 239 |
HSL | 0° | 0.00% | 0.94% |
HSB/HSV | 0° | 0.00% | 0.94% |
CMYK | 0.00% | 0.00% | 0.00% |
6.27% |
HEX | EF | EF | EF |
Decimal | 239 | 239 | 239 |
Binary | 11101111 | 11101111 | 11101111 |
Octal | 357 | 357 | 357 |
Examples of css and html codes for elements with #EFEFEF color. Also use rgb(239,239,239) instead hex code.
.myTextColor { color: #EFEFEF; }
<p style="color:#EFEFEF">This sample text font color is #EFEFEF.</p>
This text font color is #EFEFEF.
.myBgColor { background-color: #EFEFEF; }
<div style="background-color:#EFEFEF">Inner text</div>
This div background color is #EFEFEF.
.myBorderColor { border: 1px solid #EFEFEF; }
<div style="border:3px solid #EFEFEF">Div</div>
This div border color is #EFEFEF.
.myOpacity80 { color: #EFEFEF; opacity: 0.8; }
<p style="color:#EFEFEF;opacity:0.8;">80%</p>
Text with #EFEFEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFEFEF;}
<p style="text-shadow: 3px 3px 1px #EFEFEF">Text here.</p>
This text has shadow with #EFEFEF color.
.textShadow {text-shadow: 3px 3px 1px #EFEFEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFEFEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFEFEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFEFEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFEFEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFEFEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFEFEF; -webkit-box-shadow: 1px 1px 3px 2px #EFEFEF; box-shadow: 1px 1px 3px 2px #EFEFEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFEFEF; -webkit-box-shadow: 1px 1px 3px 2px #EFEFEF; box-shadow:1px 1px 3px 2px #EFEFEF;">
Div content here</div>
This text has color #EFEFEF on black background.
This text has color #EFEFEF on white background.
This text has black color on #EFEFEF background.
This text has white color on #EFEFEF background.