HEX: #EED387
RGB: (238,211,135)
#EED387 contains mainly red and green colors. Web safe color of #EED387 is #FFCC99 (or #FC9).
#EED387 color RGB value is (238,211,135).
RGB: (238,211,135) (93%,83%,53%)
R 238 of 255 = 93%
G 211 of 255 = 83%
B 135 of 255 = 53%
R + G + B ~ 76%. #EED387 is quite light color.
R + G + B =
238 + 211 + 135 = 584 (100%)
R 238 of 584 ~ 40.75%
G 211 of 584 ~ 36.13%
B 135 of 584 ~ 23.12%
#EED387 color CMYK value is (0,11,43,7).
CMYK: (0,11,43,7) C0M11Y43K7 (0%,11%,43%,7%) (0.00/0.11/0.43/0.07)
EE | D3 | 87 | |
---|---|---|---|
RGB | 238 | 211 | 135 |
HSL | 44° | 75.18% | 73.14% |
HSB/HSV | 44° | 43.28% | 93.33% |
CMYK | 0.00% | 11.34% | 43.28% |
6.67% |
HEX | EE | D3 | 87 |
Decimal | 238 | 211 | 135 |
Binary | 11101110 | 11010011 | 10000111 |
Octal | 356 | 323 | 207 |
Examples of css and html codes for elements with #EED387 color. Also use rgb(238,211,135) instead hex code.
.myTextColor { color: #EED387; }
<p style="color:#EED387">This sample text font color is #EED387.</p>
This text font color is #EED387.
.myBgColor { background-color: #EED387; }
<div style="background-color:#EED387">Inner text</div>
This div background color is #EED387.
.myBorderColor { border: 1px solid #EED387; }
<div style="border:3px solid #EED387">Div</div>
This div border color is #EED387.
.myOpacity80 { color: #EED387; opacity: 0.8; }
<p style="color:#EED387;opacity:0.8;">80%</p>
Text with #EED387 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED387;}
<p style="text-shadow: 3px 3px 1px #EED387">Text here.</p>
This text has shadow with #EED387 color.
.textShadow {text-shadow: 3px 3px 1px #EED387, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED387, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED387 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED387, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED387, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED387 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED387; -webkit-box-shadow: 1px 1px 3px 2px #EED387; box-shadow: 1px 1px 3px 2px #EED387; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED387; -webkit-box-shadow: 1px 1px 3px 2px #EED387; box-shadow:1px 1px 3px 2px #EED387;">
Div content here</div>
This text has color #EED387 on black background.
This text has color #EED387 on white background.
This text has black color on #EED387 background.
This text has white color on #EED387 background.