HEX: #F6CD74
RGB: (246,205,116)
#F6CD74 contains mainly red and green colors. Web safe color of #F6CD74 is #FFCC66 (or #FC6).
#F6CD74 color RGB value is (246,205,116).
RGB: (246,205,116) (96%,80%,45%)
R 246 of 255 = 96%
G 205 of 255 = 80%
B 116 of 255 = 45%
R + G + B ~ 74%. #F6CD74 is quite light color.
R + G + B =
246 + 205 + 116 = 567 (100%)
R 246 of 567 ~ 43.39%
G 205 of 567 ~ 36.16%
B 116 of 567 ~ 20.46%
#F6CD74 color CMYK value is (0,17,53,4).
CMYK: (0,17,53,4) C0M17Y53K4 (0%,17%,53%,4%) (0.00/0.17/0.53/0.04)
F6 | CD | 74 | |
---|---|---|---|
RGB | 246 | 205 | 116 |
HSL | 41° | 87.84% | 70.98% |
HSB/HSV | 41° | 52.85% | 96.47% |
CMYK | 0.00% | 16.67% | 52.85% |
3.53% |
HEX | F6 | CD | 74 |
Decimal | 246 | 205 | 116 |
Binary | 11110110 | 11001101 | 1110100 |
Octal | 366 | 315 | 164 |
Examples of css and html codes for elements with #F6CD74 color. Also use rgb(246,205,116) instead hex code.
.myTextColor { color: #F6CD74; }
<p style="color:#F6CD74">This sample text font color is #F6CD74.</p>
This text font color is #F6CD74.
.myBgColor { background-color: #F6CD74; }
<div style="background-color:#F6CD74">Inner text</div>
This div background color is #F6CD74.
.myBorderColor { border: 1px solid #F6CD74; }
<div style="border:3px solid #F6CD74">Div</div>
This div border color is #F6CD74.
.myOpacity80 { color: #F6CD74; opacity: 0.8; }
<p style="color:#F6CD74;opacity:0.8;">80%</p>
Text with #F6CD74 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6CD74;}
<p style="text-shadow: 3px 3px 1px #F6CD74">Text here.</p>
This text has shadow with #F6CD74 color.
.textShadow {text-shadow: 3px 3px 1px #F6CD74, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6CD74, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6CD74 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6CD74, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6CD74, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6CD74 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6CD74; -webkit-box-shadow: 1px 1px 3px 2px #F6CD74; box-shadow: 1px 1px 3px 2px #F6CD74; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6CD74; -webkit-box-shadow: 1px 1px 3px 2px #F6CD74; box-shadow:1px 1px 3px 2px #F6CD74;">
Div content here</div>
This text has color #F6CD74 on black background.
This text has color #F6CD74 on white background.
This text has black color on #F6CD74 background.
This text has white color on #F6CD74 background.