HEX: #F5C67D
RGB: (245,198,125)
#F5C67D contains mainly red and green colors. Web safe color of #F5C67D is #FFCC66 (or #FC6).
#F5C67D color RGB value is (245,198,125).
RGB: (245,198,125) (96%,78%,49%)
R 245 of 255 = 96%
G 198 of 255 = 78%
B 125 of 255 = 49%
R + G + B ~ 74%. #F5C67D is quite light color.
R + G + B =
245 + 198 + 125 = 568 (100%)
R 245 of 568 ~ 43.13%
G 198 of 568 ~ 34.86%
B 125 of 568 ~ 22.01%
#F5C67D color CMYK value is (0,19,49,4).
CMYK: (0,19,49,4) C0M19Y49K4 (0%,19%,49%,4%) (0.00/0.19/0.49/0.04)
F5 | C6 | 7D | |
---|---|---|---|
RGB | 245 | 198 | 125 |
HSL | 37° | 85.71% | 72.55% |
HSB/HSV | 37° | 48.98% | 96.08% |
CMYK | 0.00% | 19.18% | 48.98% |
3.92% |
HEX | F5 | C6 | 7D |
Decimal | 245 | 198 | 125 |
Binary | 11110101 | 11000110 | 1111101 |
Octal | 365 | 306 | 175 |
Examples of css and html codes for elements with #F5C67D color. Also use rgb(245,198,125) instead hex code.
.myTextColor { color: #F5C67D; }
<p style="color:#F5C67D">This sample text font color is #F5C67D.</p>
This text font color is #F5C67D.
.myBgColor { background-color: #F5C67D; }
<div style="background-color:#F5C67D">Inner text</div>
This div background color is #F5C67D.
.myBorderColor { border: 1px solid #F5C67D; }
<div style="border:3px solid #F5C67D">Div</div>
This div border color is #F5C67D.
.myOpacity80 { color: #F5C67D; opacity: 0.8; }
<p style="color:#F5C67D;opacity:0.8;">80%</p>
Text with #F5C67D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5C67D;}
<p style="text-shadow: 3px 3px 1px #F5C67D">Text here.</p>
This text has shadow with #F5C67D color.
.textShadow {text-shadow: 3px 3px 1px #F5C67D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5C67D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5C67D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5C67D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5C67D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5C67D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5C67D; -webkit-box-shadow: 1px 1px 3px 2px #F5C67D; box-shadow: 1px 1px 3px 2px #F5C67D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5C67D; -webkit-box-shadow: 1px 1px 3px 2px #F5C67D; box-shadow:1px 1px 3px 2px #F5C67D;">
Div content here</div>
This text has color #F5C67D on black background.
This text has color #F5C67D on white background.
This text has black color on #F5C67D background.
This text has white color on #F5C67D background.