HEX: #FA8228
RGB: (250,130,40)
#FA8228 contains mainly red color. Web safe color of #FA8228 is #FF9933 (or #F93).
#FA8228 color RGB value is (250,130,40).
RGB: (250,130,40) (98%,51%,16%)
R 250 of 255 = 98%
G 130 of 255 = 51%
B 40 of 255 = 16%
R + G + B ~ 55%. #FA8228 is middle color (not dark and not light).
R + G + B =
250 + 130 + 40 = 420 (100%)
R 250 of 420 ~ 59.52%
G 130 of 420 ~ 30.95%
B 40 of 420 ~ 9.52%
#FA8228 color CMYK value is (0,48,84,2).
CMYK: (0,48,84,2) C0M48Y84K2 (0%,48%,84%,2%) (0.00/0.48/0.84/0.02)
FA | 82 | 28 | |
---|---|---|---|
RGB | 250 | 130 | 40 |
HSL | 26° | 95.45% | 56.86% |
HSB/HSV | 26° | 84.00% | 98.04% |
CMYK | 0.00% | 48.00% | 84.00% |
1.96% |
HEX | FA | 82 | 28 |
Decimal | 250 | 130 | 40 |
Binary | 11111010 | 10000010 | 101000 |
Octal | 372 | 202 | 50 |
Examples of css and html codes for elements with #FA8228 color. Also use rgb(250,130,40) instead hex code.
.myTextColor { color: #FA8228; }
<p style="color:#FA8228">This sample text font color is #FA8228.</p>
This text font color is #FA8228.
.myBgColor { background-color: #FA8228; }
<div style="background-color:#FA8228">Inner text</div>
This div background color is #FA8228.
.myBorderColor { border: 1px solid #FA8228; }
<div style="border:3px solid #FA8228">Div</div>
This div border color is #FA8228.
.myOpacity80 { color: #FA8228; opacity: 0.8; }
<p style="color:#FA8228;opacity:0.8;">80%</p>
Text with #FA8228 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA8228;}
<p style="text-shadow: 3px 3px 1px #FA8228">Text here.</p>
This text has shadow with #FA8228 color.
.textShadow {text-shadow: 3px 3px 1px #FA8228, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA8228, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA8228 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA8228, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA8228, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA8228 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA8228; -webkit-box-shadow: 1px 1px 3px 2px #FA8228; box-shadow: 1px 1px 3px 2px #FA8228; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA8228; -webkit-box-shadow: 1px 1px 3px 2px #FA8228; box-shadow:1px 1px 3px 2px #FA8228;">
Div content here</div>
This text has color #FA8228 on black background.
This text has color #FA8228 on white background.
This text has black color on #FA8228 background.
This text has white color on #FA8228 background.