HEX: #F1A42B
RGB: (241,164,43)
#F1A42B contains mainly red color. Web safe color of #F1A42B is #FF9933 (or #F93).
#F1A42B color RGB value is (241,164,43).
RGB: (241,164,43) (95%,64%,17%)
R 241 of 255 = 95%
G 164 of 255 = 64%
B 43 of 255 = 17%
R + G + B ~ 59%. #F1A42B is middle color (not dark and not light).
R + G + B =
241 + 164 + 43 = 448 (100%)
R 241 of 448 ~ 53.79%
G 164 of 448 ~ 36.61%
B 43 of 448 ~ 9.6%
#F1A42B color CMYK value is (0,32,82,5).
CMYK: (0,32,82,5) C0M32Y82K5 (0%,32%,82%,5%) (0.00/0.32/0.82/0.05)
F1 | A4 | 2B | |
---|---|---|---|
RGB | 241 | 164 | 43 |
HSL | 37° | 87.61% | 55.69% |
HSB/HSV | 37° | 82.16% | 94.51% |
CMYK | 0.00% | 31.95% | 82.16% |
5.49% |
HEX | F1 | A4 | 2B |
Decimal | 241 | 164 | 43 |
Binary | 11110001 | 10100100 | 101011 |
Octal | 361 | 244 | 53 |
Examples of css and html codes for elements with #F1A42B color. Also use rgb(241,164,43) instead hex code.
.myTextColor { color: #F1A42B; }
<p style="color:#F1A42B">This sample text font color is #F1A42B.</p>
This text font color is #F1A42B.
.myBgColor { background-color: #F1A42B; }
<div style="background-color:#F1A42B">Inner text</div>
This div background color is #F1A42B.
.myBorderColor { border: 1px solid #F1A42B; }
<div style="border:3px solid #F1A42B">Div</div>
This div border color is #F1A42B.
.myOpacity80 { color: #F1A42B; opacity: 0.8; }
<p style="color:#F1A42B;opacity:0.8;">80%</p>
Text with #F1A42B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1A42B;}
<p style="text-shadow: 3px 3px 1px #F1A42B">Text here.</p>
This text has shadow with #F1A42B color.
.textShadow {text-shadow: 3px 3px 1px #F1A42B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1A42B, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1A42B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1A42B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1A42B, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1A42B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1A42B; -webkit-box-shadow: 1px 1px 3px 2px #F1A42B; box-shadow: 1px 1px 3px 2px #F1A42B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1A42B; -webkit-box-shadow: 1px 1px 3px 2px #F1A42B; box-shadow:1px 1px 3px 2px #F1A42B;">
Div content here</div>
This text has color #F1A42B on black background.
This text has color #F1A42B on white background.
This text has black color on #F1A42B background.
This text has white color on #F1A42B background.