HEX: #E3CC5F
RGB: (227,204,95)
#E3CC5F contains mainly red and green colors. Web safe color of #E3CC5F is #CCCC66 (or #CC6).
#E3CC5F color RGB value is (227,204,95).
RGB: (227,204,95) (89%,80%,37%)
R 227 of 255 = 89%
G 204 of 255 = 80%
B 95 of 255 = 37%
R + G + B ~ 69%. #E3CC5F is quite light color.
R + G + B =
227 + 204 + 95 = 526 (100%)
R 227 of 526 ~ 43.16%
G 204 of 526 ~ 38.78%
B 95 of 526 ~ 18.06%
#E3CC5F color CMYK value is (0,10,58,11).
CMYK: (0,10,58,11) C0M10Y58K11 (0%,10%,58%,11%) (0.00/0.10/0.58/0.11)
E3 | CC | 5F | |
---|---|---|---|
RGB | 227 | 204 | 95 |
HSL | 50° | 70.21% | 63.14% |
HSB/HSV | 50° | 58.15% | 89.02% |
CMYK | 0.00% | 10.13% | 58.15% |
10.98% |
HEX | E3 | CC | 5F |
Decimal | 227 | 204 | 95 |
Binary | 11100011 | 11001100 | 1011111 |
Octal | 343 | 314 | 137 |
Examples of css and html codes for elements with #E3CC5F color. Also use rgb(227,204,95) instead hex code.
.myTextColor { color: #E3CC5F; }
<p style="color:#E3CC5F">This sample text font color is #E3CC5F.</p>
This text font color is #E3CC5F.
.myBgColor { background-color: #E3CC5F; }
<div style="background-color:#E3CC5F">Inner text</div>
This div background color is #E3CC5F.
.myBorderColor { border: 1px solid #E3CC5F; }
<div style="border:3px solid #E3CC5F">Div</div>
This div border color is #E3CC5F.
.myOpacity80 { color: #E3CC5F; opacity: 0.8; }
<p style="color:#E3CC5F;opacity:0.8;">80%</p>
Text with #E3CC5F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3CC5F;}
<p style="text-shadow: 3px 3px 1px #E3CC5F">Text here.</p>
This text has shadow with #E3CC5F color.
.textShadow {text-shadow: 3px 3px 1px #E3CC5F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3CC5F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3CC5F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3CC5F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3CC5F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3CC5F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3CC5F; -webkit-box-shadow: 1px 1px 3px 2px #E3CC5F; box-shadow: 1px 1px 3px 2px #E3CC5F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3CC5F; -webkit-box-shadow: 1px 1px 3px 2px #E3CC5F; box-shadow:1px 1px 3px 2px #E3CC5F;">
Div content here</div>
This text has color #E3CC5F on black background.
This text has color #E3CC5F on white background.
This text has black color on #E3CC5F background.
This text has white color on #E3CC5F background.