HEX: #FA933C
RGB: (250,147,60)
#FA933C contains mainly red color. Web safe color of #FA933C is #FF9933 (or #F93).
#FA933C color RGB value is (250,147,60).
RGB: (250,147,60) (98%,58%,24%)
R 250 of 255 = 98%
G 147 of 255 = 58%
B 60 of 255 = 24%
R + G + B ~ 60%. #FA933C is middle color (not dark and not light).
R + G + B =
250 + 147 + 60 = 457 (100%)
R 250 of 457 ~ 54.7%
G 147 of 457 ~ 32.17%
B 60 of 457 ~ 13.13%
#FA933C color CMYK value is (0,41,76,2).
CMYK: (0,41,76,2) C0M41Y76K2 (0%,41%,76%,2%) (0.00/0.41/0.76/0.02)
FA | 93 | 3C | |
---|---|---|---|
RGB | 250 | 147 | 60 |
HSL | 27° | 95.00% | 60.78% |
HSB/HSV | 27° | 76.00% | 98.04% |
CMYK | 0.00% | 41.20% | 76.00% |
1.96% |
HEX | FA | 93 | 3C |
Decimal | 250 | 147 | 60 |
Binary | 11111010 | 10010011 | 111100 |
Octal | 372 | 223 | 74 |
Examples of css and html codes for elements with #FA933C color. Also use rgb(250,147,60) instead hex code.
.myTextColor { color: #FA933C; }
<p style="color:#FA933C">This sample text font color is #FA933C.</p>
This text font color is #FA933C.
.myBgColor { background-color: #FA933C; }
<div style="background-color:#FA933C">Inner text</div>
This div background color is #FA933C.
.myBorderColor { border: 1px solid #FA933C; }
<div style="border:3px solid #FA933C">Div</div>
This div border color is #FA933C.
.myOpacity80 { color: #FA933C; opacity: 0.8; }
<p style="color:#FA933C;opacity:0.8;">80%</p>
Text with #FA933C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA933C;}
<p style="text-shadow: 3px 3px 1px #FA933C">Text here.</p>
This text has shadow with #FA933C color.
.textShadow {text-shadow: 3px 3px 1px #FA933C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA933C, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA933C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA933C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA933C, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA933C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA933C; -webkit-box-shadow: 1px 1px 3px 2px #FA933C; box-shadow: 1px 1px 3px 2px #FA933C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA933C; -webkit-box-shadow: 1px 1px 3px 2px #FA933C; box-shadow:1px 1px 3px 2px #FA933C;">
Div content here</div>
This text has color #FA933C on black background.
This text has color #FA933C on white background.
This text has black color on #FA933C background.
This text has white color on #FA933C background.