HEX: #EFDA95
RGB: (239,218,149)
#EFDA95 contains mainly red and green colors. Web safe color of #EFDA95 is #FFCC99 (or #FC9).
#EFDA95 color RGB value is (239,218,149).
RGB: (239,218,149) (94%,85%,58%)
R 239 of 255 = 94%
G 218 of 255 = 85%
B 149 of 255 = 58%
R + G + B ~ 79%. #EFDA95 is quite light color.
R + G + B =
239 + 218 + 149 = 606 (100%)
R 239 of 606 ~ 39.44%
G 218 of 606 ~ 35.97%
B 149 of 606 ~ 24.59%
#EFDA95 color CMYK value is (0,9,38,6).
CMYK: (0,9,38,6) C0M9Y38K6 (0%,9%,38%,6%) (0.00/0.09/0.38/0.06)
EF | DA | 95 | |
---|---|---|---|
RGB | 239 | 218 | 149 |
HSL | 46° | 73.77% | 76.08% |
HSB/HSV | 46° | 37.66% | 93.73% |
CMYK | 0.00% | 8.79% | 37.66% |
6.27% |
HEX | EF | DA | 95 |
Decimal | 239 | 218 | 149 |
Binary | 11101111 | 11011010 | 10010101 |
Octal | 357 | 332 | 225 |
Examples of css and html codes for elements with #EFDA95 color. Also use rgb(239,218,149) instead hex code.
.myTextColor { color: #EFDA95; }
<p style="color:#EFDA95">This sample text font color is #EFDA95.</p>
This text font color is #EFDA95.
.myBgColor { background-color: #EFDA95; }
<div style="background-color:#EFDA95">Inner text</div>
This div background color is #EFDA95.
.myBorderColor { border: 1px solid #EFDA95; }
<div style="border:3px solid #EFDA95">Div</div>
This div border color is #EFDA95.
.myOpacity80 { color: #EFDA95; opacity: 0.8; }
<p style="color:#EFDA95;opacity:0.8;">80%</p>
Text with #EFDA95 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFDA95;}
<p style="text-shadow: 3px 3px 1px #EFDA95">Text here.</p>
This text has shadow with #EFDA95 color.
.textShadow {text-shadow: 3px 3px 1px #EFDA95, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFDA95, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFDA95 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFDA95, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFDA95, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFDA95 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFDA95; -webkit-box-shadow: 1px 1px 3px 2px #EFDA95; box-shadow: 1px 1px 3px 2px #EFDA95; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFDA95; -webkit-box-shadow: 1px 1px 3px 2px #EFDA95; box-shadow:1px 1px 3px 2px #EFDA95;">
Div content here</div>
This text has color #EFDA95 on black background.
This text has color #EFDA95 on white background.
This text has black color on #EFDA95 background.
This text has white color on #EFDA95 background.