HEX: #EFDBA5
RGB: (239,219,165)
#EFDBA5 contains mainly red and green colors. Web safe color of #EFDBA5 is #FFCC99 (or #FC9).
#EFDBA5 color RGB value is (239,219,165).
RGB: (239,219,165) (94%,86%,65%)
R 239 of 255 = 94%
G 219 of 255 = 86%
B 165 of 255 = 65%
R + G + B ~ 82%. #EFDBA5 is quite light color.
R + G + B =
239 + 219 + 165 = 623 (100%)
R 239 of 623 ~ 38.36%
G 219 of 623 ~ 35.15%
B 165 of 623 ~ 26.48%
#EFDBA5 color CMYK value is (0,8,31,6).
CMYK: (0,8,31,6) C0M8Y31K6 (0%,8%,31%,6%) (0.00/0.08/0.31/0.06)
EF | DB | A5 | |
---|---|---|---|
RGB | 239 | 219 | 165 |
HSL | 44° | 69.81% | 79.22% |
HSB/HSV | 44° | 30.96% | 93.73% |
CMYK | 0.00% | 8.37% | 30.96% |
6.27% |
HEX | EF | DB | A5 |
Decimal | 239 | 219 | 165 |
Binary | 11101111 | 11011011 | 10100101 |
Octal | 357 | 333 | 245 |
Examples of css and html codes for elements with #EFDBA5 color. Also use rgb(239,219,165) instead hex code.
.myTextColor { color: #EFDBA5; }
<p style="color:#EFDBA5">This sample text font color is #EFDBA5.</p>
This text font color is #EFDBA5.
.myBgColor { background-color: #EFDBA5; }
<div style="background-color:#EFDBA5">Inner text</div>
This div background color is #EFDBA5.
.myBorderColor { border: 1px solid #EFDBA5; }
<div style="border:3px solid #EFDBA5">Div</div>
This div border color is #EFDBA5.
.myOpacity80 { color: #EFDBA5; opacity: 0.8; }
<p style="color:#EFDBA5;opacity:0.8;">80%</p>
Text with #EFDBA5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFDBA5;}
<p style="text-shadow: 3px 3px 1px #EFDBA5">Text here.</p>
This text has shadow with #EFDBA5 color.
.textShadow {text-shadow: 3px 3px 1px #EFDBA5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFDBA5, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFDBA5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFDBA5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFDBA5, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFDBA5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFDBA5; -webkit-box-shadow: 1px 1px 3px 2px #EFDBA5; box-shadow: 1px 1px 3px 2px #EFDBA5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFDBA5; -webkit-box-shadow: 1px 1px 3px 2px #EFDBA5; box-shadow:1px 1px 3px 2px #EFDBA5;">
Div content here</div>
This text has color #EFDBA5 on black background.
This text has color #EFDBA5 on white background.
This text has black color on #EFDBA5 background.
This text has white color on #EFDBA5 background.