HEX: #FC963C
RGB: (252,150,60)
#FC963C contains mainly red color. Web safe color of #FC963C is #FF9933 (or #F93).
#FC963C color RGB value is (252,150,60).
RGB: (252,150,60) (99%,59%,24%)
R 252 of 255 = 99%
G 150 of 255 = 59%
B 60 of 255 = 24%
R + G + B ~ 61%. #FC963C is quite light color.
R + G + B =
252 + 150 + 60 = 462 (100%)
R 252 of 462 ~ 54.55%
G 150 of 462 ~ 32.47%
B 60 of 462 ~ 12.99%
#FC963C color CMYK value is (0,40,76,1).
CMYK: (0,40,76,1) C0M40Y76K1 (0%,40%,76%,1%) (0.00/0.40/0.76/0.01)
FC | 96 | 3C | |
---|---|---|---|
RGB | 252 | 150 | 60 |
HSL | 28° | 96.97% | 61.18% |
HSB/HSV | 28° | 76.19% | 98.82% |
CMYK | 0.00% | 40.48% | 76.19% |
1.18% |
HEX | FC | 96 | 3C |
Decimal | 252 | 150 | 60 |
Binary | 11111100 | 10010110 | 111100 |
Octal | 374 | 226 | 74 |
Examples of css and html codes for elements with #FC963C color. Also use rgb(252,150,60) instead hex code.
.myTextColor { color: #FC963C; }
<p style="color:#FC963C">This sample text font color is #FC963C.</p>
This text font color is #FC963C.
.myBgColor { background-color: #FC963C; }
<div style="background-color:#FC963C">Inner text</div>
This div background color is #FC963C.
.myBorderColor { border: 1px solid #FC963C; }
<div style="border:3px solid #FC963C">Div</div>
This div border color is #FC963C.
.myOpacity80 { color: #FC963C; opacity: 0.8; }
<p style="color:#FC963C;opacity:0.8;">80%</p>
Text with #FC963C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FC963C;}
<p style="text-shadow: 3px 3px 1px #FC963C">Text here.</p>
This text has shadow with #FC963C color.
.textShadow {text-shadow: 3px 3px 1px #FC963C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FC963C, 5px 5px 20px red">Text here.</p>
This text has shadow with #FC963C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FC963C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FC963C, Direction=45, Strength=4)">Text</p>
This text has shadow with #FC963C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FC963C; -webkit-box-shadow: 1px 1px 3px 2px #FC963C; box-shadow: 1px 1px 3px 2px #FC963C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FC963C; -webkit-box-shadow: 1px 1px 3px 2px #FC963C; box-shadow:1px 1px 3px 2px #FC963C;">
Div content here</div>
This text has color #FC963C on black background.
This text has color #FC963C on white background.
This text has black color on #FC963C background.
This text has white color on #FC963C background.