HEX: #FCB971
RGB: (252,185,113)
#FCB971 contains mainly red color. Web safe color of #FCB971 is #FFCC66 (or #FC6).
#FCB971 color RGB value is (252,185,113).
RGB: (252,185,113) (99%,73%,44%)
R 252 of 255 = 99%
G 185 of 255 = 73%
B 113 of 255 = 44%
R + G + B ~ 72%. #FCB971 is quite light color.
R + G + B =
252 + 185 + 113 = 550 (100%)
R 252 of 550 ~ 45.82%
G 185 of 550 ~ 33.64%
B 113 of 550 ~ 20.55%
#FCB971 color CMYK value is (0,27,55,1).
CMYK: (0,27,55,1) C0M27Y55K1 (0%,27%,55%,1%) (0.00/0.27/0.55/0.01)
FC | B9 | 71 | |
---|---|---|---|
RGB | 252 | 185 | 113 |
HSL | 31° | 95.86% | 71.57% |
HSB/HSV | 31° | 55.16% | 98.82% |
CMYK | 0.00% | 26.59% | 55.16% |
1.18% |
HEX | FC | B9 | 71 |
Decimal | 252 | 185 | 113 |
Binary | 11111100 | 10111001 | 1110001 |
Octal | 374 | 271 | 161 |
Examples of css and html codes for elements with #FCB971 color. Also use rgb(252,185,113) instead hex code.
.myTextColor { color: #FCB971; }
<p style="color:#FCB971">This sample text font color is #FCB971.</p>
This text font color is #FCB971.
.myBgColor { background-color: #FCB971; }
<div style="background-color:#FCB971">Inner text</div>
This div background color is #FCB971.
.myBorderColor { border: 1px solid #FCB971; }
<div style="border:3px solid #FCB971">Div</div>
This div border color is #FCB971.
.myOpacity80 { color: #FCB971; opacity: 0.8; }
<p style="color:#FCB971;opacity:0.8;">80%</p>
Text with #FCB971 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCB971;}
<p style="text-shadow: 3px 3px 1px #FCB971">Text here.</p>
This text has shadow with #FCB971 color.
.textShadow {text-shadow: 3px 3px 1px #FCB971, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCB971, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCB971 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCB971, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCB971, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCB971 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCB971; -webkit-box-shadow: 1px 1px 3px 2px #FCB971; box-shadow: 1px 1px 3px 2px #FCB971; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCB971; -webkit-box-shadow: 1px 1px 3px 2px #FCB971; box-shadow:1px 1px 3px 2px #FCB971;">
Div content here</div>
This text has color #FCB971 on black background.
This text has color #FCB971 on white background.
This text has black color on #FCB971 background.
This text has white color on #FCB971 background.