HEX: #E6D54F
RGB: (230,213,79)
#E6D54F contains mainly red and green colors. Web safe color of #E6D54F is #CCCC66 (or #CC6).
#E6D54F color RGB value is (230,213,79).
RGB: (230,213,79) (90%,84%,31%)
R 230 of 255 = 90%
G 213 of 255 = 84%
B 79 of 255 = 31%
R + G + B ~ 68%. #E6D54F is quite light color.
R + G + B =
230 + 213 + 79 = 522 (100%)
R 230 of 522 ~ 44.06%
G 213 of 522 ~ 40.8%
B 79 of 522 ~ 15.13%
#E6D54F color CMYK value is (0,7,66,10).
CMYK: (0,7,66,10) C0M7Y66K10 (0%,7%,66%,10%) (0.00/0.07/0.66/0.10)
E6 | D5 | 4F | |
---|---|---|---|
RGB | 230 | 213 | 79 |
HSL | 53° | 75.12% | 60.59% |
HSB/HSV | 53° | 65.65% | 90.20% |
CMYK | 0.00% | 7.39% | 65.65% |
9.80% |
HEX | E6 | D5 | 4F |
Decimal | 230 | 213 | 79 |
Binary | 11100110 | 11010101 | 1001111 |
Octal | 346 | 325 | 117 |
Examples of css and html codes for elements with #E6D54F color. Also use rgb(230,213,79) instead hex code.
.myTextColor { color: #E6D54F; }
<p style="color:#E6D54F">This sample text font color is #E6D54F.</p>
This text font color is #E6D54F.
.myBgColor { background-color: #E6D54F; }
<div style="background-color:#E6D54F">Inner text</div>
This div background color is #E6D54F.
.myBorderColor { border: 1px solid #E6D54F; }
<div style="border:3px solid #E6D54F">Div</div>
This div border color is #E6D54F.
.myOpacity80 { color: #E6D54F; opacity: 0.8; }
<p style="color:#E6D54F;opacity:0.8;">80%</p>
Text with #E6D54F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6D54F;}
<p style="text-shadow: 3px 3px 1px #E6D54F">Text here.</p>
This text has shadow with #E6D54F color.
.textShadow {text-shadow: 3px 3px 1px #E6D54F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6D54F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6D54F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6D54F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6D54F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6D54F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6D54F; -webkit-box-shadow: 1px 1px 3px 2px #E6D54F; box-shadow: 1px 1px 3px 2px #E6D54F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6D54F; -webkit-box-shadow: 1px 1px 3px 2px #E6D54F; box-shadow:1px 1px 3px 2px #E6D54F;">
Div content here</div>
This text has color #E6D54F on black background.
This text has color #E6D54F on white background.
This text has black color on #E6D54F background.
This text has white color on #E6D54F background.