HEX: #EFB69C
RGB: (239,182,156)
#EFB69C contains mainly red and green colors. Web safe color of #EFB69C is #FFCC99 (or #FC9).
#EFB69C color RGB value is (239,182,156).
RGB: (239,182,156) (94%,71%,61%)
R 239 of 255 = 94%
G 182 of 255 = 71%
B 156 of 255 = 61%
R + G + B ~ 75%. #EFB69C is quite light color.
R + G + B =
239 + 182 + 156 = 577 (100%)
R 239 of 577 ~ 41.42%
G 182 of 577 ~ 31.54%
B 156 of 577 ~ 27.04%
#EFB69C color CMYK value is (0,24,35,6).
CMYK: (0,24,35,6) C0M24Y35K6 (0%,24%,35%,6%) (0.00/0.24/0.35/0.06)
EF | B6 | 9C | |
---|---|---|---|
RGB | 239 | 182 | 156 |
HSL | 19° | 72.17% | 77.45% |
HSB/HSV | 19° | 34.73% | 93.73% |
CMYK | 0.00% | 23.85% | 34.73% |
6.27% |
HEX | EF | B6 | 9C |
Decimal | 239 | 182 | 156 |
Binary | 11101111 | 10110110 | 10011100 |
Octal | 357 | 266 | 234 |
Examples of css and html codes for elements with #EFB69C color. Also use rgb(239,182,156) instead hex code.
.myTextColor { color: #EFB69C; }
<p style="color:#EFB69C">This sample text font color is #EFB69C.</p>
This text font color is #EFB69C.
.myBgColor { background-color: #EFB69C; }
<div style="background-color:#EFB69C">Inner text</div>
This div background color is #EFB69C.
.myBorderColor { border: 1px solid #EFB69C; }
<div style="border:3px solid #EFB69C">Div</div>
This div border color is #EFB69C.
.myOpacity80 { color: #EFB69C; opacity: 0.8; }
<p style="color:#EFB69C;opacity:0.8;">80%</p>
Text with #EFB69C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFB69C;}
<p style="text-shadow: 3px 3px 1px #EFB69C">Text here.</p>
This text has shadow with #EFB69C color.
.textShadow {text-shadow: 3px 3px 1px #EFB69C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFB69C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFB69C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFB69C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFB69C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFB69C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFB69C; -webkit-box-shadow: 1px 1px 3px 2px #EFB69C; box-shadow: 1px 1px 3px 2px #EFB69C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFB69C; -webkit-box-shadow: 1px 1px 3px 2px #EFB69C; box-shadow:1px 1px 3px 2px #EFB69C;">
Div content here</div>
This text has color #EFB69C on black background.
This text has color #EFB69C on white background.
This text has black color on #EFB69C background.
This text has white color on #EFB69C background.