HEX: #EEBDAE
RGB: (238,189,174)
#EEBDAE contains mainly red and green colors. Web safe color of #EEBDAE is #FFCC99 (or #FC9).
#EEBDAE color RGB value is (238,189,174).
RGB: (238,189,174) (93%,74%,68%)
R 238 of 255 = 93%
G 189 of 255 = 74%
B 174 of 255 = 68%
R + G + B ~ 78%. #EEBDAE is quite light color.
R + G + B =
238 + 189 + 174 = 601 (100%)
R 238 of 601 ~ 39.6%
G 189 of 601 ~ 31.45%
B 174 of 601 ~ 28.95%
#EEBDAE color CMYK value is (0,21,27,7).
CMYK: (0,21,27,7) C0M21Y27K7 (0%,21%,27%,7%) (0.00/0.21/0.27/0.07)
EE | BD | AE | |
---|---|---|---|
RGB | 238 | 189 | 174 |
HSL | 14° | 65.31% | 80.78% |
HSB/HSV | 14° | 26.89% | 93.33% |
CMYK | 0.00% | 20.59% | 26.89% |
6.67% |
HEX | EE | BD | AE |
Decimal | 238 | 189 | 174 |
Binary | 11101110 | 10111101 | 10101110 |
Octal | 356 | 275 | 256 |
Examples of css and html codes for elements with #EEBDAE color. Also use rgb(238,189,174) instead hex code.
.myTextColor { color: #EEBDAE; }
<p style="color:#EEBDAE">This sample text font color is #EEBDAE.</p>
This text font color is #EEBDAE.
.myBgColor { background-color: #EEBDAE; }
<div style="background-color:#EEBDAE">Inner text</div>
This div background color is #EEBDAE.
.myBorderColor { border: 1px solid #EEBDAE; }
<div style="border:3px solid #EEBDAE">Div</div>
This div border color is #EEBDAE.
.myOpacity80 { color: #EEBDAE; opacity: 0.8; }
<p style="color:#EEBDAE;opacity:0.8;">80%</p>
Text with #EEBDAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEBDAE;}
<p style="text-shadow: 3px 3px 1px #EEBDAE">Text here.</p>
This text has shadow with #EEBDAE color.
.textShadow {text-shadow: 3px 3px 1px #EEBDAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEBDAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEBDAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEBDAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEBDAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEBDAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEBDAE; -webkit-box-shadow: 1px 1px 3px 2px #EEBDAE; box-shadow: 1px 1px 3px 2px #EEBDAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEBDAE; -webkit-box-shadow: 1px 1px 3px 2px #EEBDAE; box-shadow:1px 1px 3px 2px #EEBDAE;">
Div content here</div>
This text has color #EEBDAE on black background.
This text has color #EEBDAE on white background.
This text has black color on #EEBDAE background.
This text has white color on #EEBDAE background.