HEX: #EFE69E
RGB: (239,230,158)
#EFE69E contains mainly red and green colors. Web safe color of #EFE69E is #FFCC99 (or #FC9).
#EFE69E color RGB value is (239,230,158).
RGB: (239,230,158) (94%,90%,62%)
R 239 of 255 = 94%
G 230 of 255 = 90%
B 158 of 255 = 62%
R + G + B ~ 82%. #EFE69E is quite light color.
R + G + B =
239 + 230 + 158 = 627 (100%)
R 239 of 627 ~ 38.12%
G 230 of 627 ~ 36.68%
B 158 of 627 ~ 25.2%
#EFE69E color CMYK value is (0,4,34,6).
CMYK: (0,4,34,6) C0M4Y34K6 (0%,4%,34%,6%) (0.00/0.04/0.34/0.06)
EF | E6 | 9E | |
---|---|---|---|
RGB | 239 | 230 | 158 |
HSL | 53° | 71.68% | 77.84% |
HSB/HSV | 53° | 33.89% | 93.73% |
CMYK | 0.00% | 3.77% | 33.89% |
6.27% |
HEX | EF | E6 | 9E |
Decimal | 239 | 230 | 158 |
Binary | 11101111 | 11100110 | 10011110 |
Octal | 357 | 346 | 236 |
Examples of css and html codes for elements with #EFE69E color. Also use rgb(239,230,158) instead hex code.
.myTextColor { color: #EFE69E; }
<p style="color:#EFE69E">This sample text font color is #EFE69E.</p>
This text font color is #EFE69E.
.myBgColor { background-color: #EFE69E; }
<div style="background-color:#EFE69E">Inner text</div>
This div background color is #EFE69E.
.myBorderColor { border: 1px solid #EFE69E; }
<div style="border:3px solid #EFE69E">Div</div>
This div border color is #EFE69E.
.myOpacity80 { color: #EFE69E; opacity: 0.8; }
<p style="color:#EFE69E;opacity:0.8;">80%</p>
Text with #EFE69E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFE69E;}
<p style="text-shadow: 3px 3px 1px #EFE69E">Text here.</p>
This text has shadow with #EFE69E color.
.textShadow {text-shadow: 3px 3px 1px #EFE69E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFE69E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFE69E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFE69E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFE69E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFE69E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFE69E; -webkit-box-shadow: 1px 1px 3px 2px #EFE69E; box-shadow: 1px 1px 3px 2px #EFE69E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFE69E; -webkit-box-shadow: 1px 1px 3px 2px #EFE69E; box-shadow:1px 1px 3px 2px #EFE69E;">
Div content here</div>
This text has color #EFE69E on black background.
This text has color #EFE69E on white background.
This text has black color on #EFE69E background.
This text has white color on #EFE69E background.