HEX: #F5C171
RGB: (245,193,113)
#F5C171 contains mainly red and green colors. Web safe color of #F5C171 is #FFCC66 (or #FC6).
#F5C171 color RGB value is (245,193,113).
RGB: (245,193,113) (96%,76%,44%)
R 245 of 255 = 96%
G 193 of 255 = 76%
B 113 of 255 = 44%
R + G + B ~ 72%. #F5C171 is quite light color.
R + G + B =
245 + 193 + 113 = 551 (100%)
R 245 of 551 ~ 44.46%
G 193 of 551 ~ 35.03%
B 113 of 551 ~ 20.51%
#F5C171 color CMYK value is (0,21,54,4).
CMYK: (0,21,54,4) C0M21Y54K4 (0%,21%,54%,4%) (0.00/0.21/0.54/0.04)
F5 | C1 | 71 | |
---|---|---|---|
RGB | 245 | 193 | 113 |
HSL | 36° | 86.84% | 70.20% |
HSB/HSV | 36° | 53.88% | 96.08% |
CMYK | 0.00% | 21.22% | 53.88% |
3.92% |
HEX | F5 | C1 | 71 |
Decimal | 245 | 193 | 113 |
Binary | 11110101 | 11000001 | 1110001 |
Octal | 365 | 301 | 161 |
Examples of css and html codes for elements with #F5C171 color. Also use rgb(245,193,113) instead hex code.
.myTextColor { color: #F5C171; }
<p style="color:#F5C171">This sample text font color is #F5C171.</p>
This text font color is #F5C171.
.myBgColor { background-color: #F5C171; }
<div style="background-color:#F5C171">Inner text</div>
This div background color is #F5C171.
.myBorderColor { border: 1px solid #F5C171; }
<div style="border:3px solid #F5C171">Div</div>
This div border color is #F5C171.
.myOpacity80 { color: #F5C171; opacity: 0.8; }
<p style="color:#F5C171;opacity:0.8;">80%</p>
Text with #F5C171 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5C171;}
<p style="text-shadow: 3px 3px 1px #F5C171">Text here.</p>
This text has shadow with #F5C171 color.
.textShadow {text-shadow: 3px 3px 1px #F5C171, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5C171, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5C171 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5C171, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5C171, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5C171 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5C171; -webkit-box-shadow: 1px 1px 3px 2px #F5C171; box-shadow: 1px 1px 3px 2px #F5C171; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5C171; -webkit-box-shadow: 1px 1px 3px 2px #F5C171; box-shadow:1px 1px 3px 2px #F5C171;">
Div content here</div>
This text has color #F5C171 on black background.
This text has color #F5C171 on white background.
This text has black color on #F5C171 background.
This text has white color on #F5C171 background.