HEX: #EFC180
RGB: (239,193,128)
#EFC180 contains mainly red and green colors. Web safe color of #EFC180 is #FFCC66 (or #FC6).
#EFC180 color RGB value is (239,193,128).
RGB: (239,193,128) (94%,76%,50%)
R 239 of 255 = 94%
G 193 of 255 = 76%
B 128 of 255 = 50%
R + G + B ~ 73%. #EFC180 is quite light color.
R + G + B =
239 + 193 + 128 = 560 (100%)
R 239 of 560 ~ 42.68%
G 193 of 560 ~ 34.46%
B 128 of 560 ~ 22.86%
#EFC180 color CMYK value is (0,19,46,6).
CMYK: (0,19,46,6) C0M19Y46K6 (0%,19%,46%,6%) (0.00/0.19/0.46/0.06)
EF | C1 | 80 | |
---|---|---|---|
RGB | 239 | 193 | 128 |
HSL | 35° | 77.62% | 71.96% |
HSB/HSV | 35° | 46.44% | 93.73% |
CMYK | 0.00% | 19.25% | 46.44% |
6.27% |
HEX | EF | C1 | 80 |
Decimal | 239 | 193 | 128 |
Binary | 11101111 | 11000001 | 10000000 |
Octal | 357 | 301 | 200 |
Examples of css and html codes for elements with #EFC180 color. Also use rgb(239,193,128) instead hex code.
.myTextColor { color: #EFC180; }
<p style="color:#EFC180">This sample text font color is #EFC180.</p>
This text font color is #EFC180.
.myBgColor { background-color: #EFC180; }
<div style="background-color:#EFC180">Inner text</div>
This div background color is #EFC180.
.myBorderColor { border: 1px solid #EFC180; }
<div style="border:3px solid #EFC180">Div</div>
This div border color is #EFC180.
.myOpacity80 { color: #EFC180; opacity: 0.8; }
<p style="color:#EFC180;opacity:0.8;">80%</p>
Text with #EFC180 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFC180;}
<p style="text-shadow: 3px 3px 1px #EFC180">Text here.</p>
This text has shadow with #EFC180 color.
.textShadow {text-shadow: 3px 3px 1px #EFC180, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFC180, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFC180 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFC180, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFC180, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFC180 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFC180; -webkit-box-shadow: 1px 1px 3px 2px #EFC180; box-shadow: 1px 1px 3px 2px #EFC180; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFC180; -webkit-box-shadow: 1px 1px 3px 2px #EFC180; box-shadow:1px 1px 3px 2px #EFC180;">
Div content here</div>
This text has color #EFC180 on black background.
This text has color #EFC180 on white background.
This text has black color on #EFC180 background.
This text has white color on #EFC180 background.